diff --git a/Application/Api/GetPlayOptionQuery.cs b/Application/Api/GetPlayOptionQuery.cs index e51d89b..b56eb40 100644 --- a/Application/Api/GetPlayOptionQuery.cs +++ b/Application/Api/GetPlayOptionQuery.cs @@ -1,4 +1,6 @@ -namespace Application.Api; +using Shared.Models; + +namespace Application.Api; public record GetPlayOptionQuery(long CardId) : IRequestWrapper; diff --git a/Application/Api/GetTotalResultQuery.cs b/Application/Api/GetTotalResultQuery.cs index 36cb635..af977fa 100644 --- a/Application/Api/GetTotalResultQuery.cs +++ b/Application/Api/GetTotalResultQuery.cs @@ -1,4 +1,5 @@ using Microsoft.Extensions.Logging; +using Shared.Models; namespace Application.Api; diff --git a/Application/Api/SetPlayOptionCommand.cs b/Application/Api/SetPlayOptionCommand.cs index 427bd92..430f0f3 100644 --- a/Application/Api/SetPlayOptionCommand.cs +++ b/Application/Api/SetPlayOptionCommand.cs @@ -1,4 +1,5 @@ using Microsoft.Extensions.Logging; +using Shared.Models; namespace Application.Api; diff --git a/Application/Application.csproj b/Application/Application.csproj index a8f1596..5d3eb55 100644 --- a/Application/Application.csproj +++ b/Application/Application.csproj @@ -8,6 +8,7 @@ + diff --git a/Application/GlobalUsings.cs b/Application/GlobalUsings.cs index c8a762a..c2b3b75 100644 --- a/Application/GlobalUsings.cs +++ b/Application/GlobalUsings.cs @@ -4,8 +4,8 @@ global using Microsoft.EntityFrameworkCore; global using System.Xml.Serialization; global using Application.Common.Base; global using Application.Common.Extensions; -global using Application.Common.Models; -global using Application.Dto.Api; +global using Shared.Dto.Api; +global using Shared.Models; global using Application.Dto.Game; global using Application.Interfaces; global using Application.Mappers; \ No newline at end of file diff --git a/GC-local-server-rewrite.sln b/GC-local-server-rewrite.sln index 36a2db7..1eb288c 100644 --- a/GC-local-server-rewrite.sln +++ b/GC-local-server-rewrite.sln @@ -23,6 +23,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "Infrastru EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebUI", "WebUI\WebUI.csproj", "{DDF8DE35-62C5-4033-93CE-0CB811A9CAEC}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "Shared\Shared.csproj", "{910A7A93-1815-41BF-ACFA-06433DFA1937}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -69,6 +71,10 @@ Global {DDF8DE35-62C5-4033-93CE-0CB811A9CAEC}.Debug|Any CPU.Build.0 = Debug|Any CPU {DDF8DE35-62C5-4033-93CE-0CB811A9CAEC}.Release|Any CPU.ActiveCfg = Release|Any CPU {DDF8DE35-62C5-4033-93CE-0CB811A9CAEC}.Release|Any CPU.Build.0 = Release|Any CPU + {910A7A93-1815-41BF-ACFA-06433DFA1937}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {910A7A93-1815-41BF-ACFA-06433DFA1937}.Debug|Any CPU.Build.0 = Debug|Any CPU + {910A7A93-1815-41BF-ACFA-06433DFA1937}.Release|Any CPU.ActiveCfg = Release|Any CPU + {910A7A93-1815-41BF-ACFA-06433DFA1937}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MainServer/.gitignore b/MainServer/.gitignore index ca7f8b0..741db23 100644 --- a/MainServer/.gitignore +++ b/MainServer/.gitignore @@ -439,4 +439,7 @@ FodyWeavers.xsd /db/card.db3 Certificates wwwroot/events/ +wwwroot/_framework/ +wwwroot/favicon.ico +wwwroot/index.html Database/card*.db3 diff --git a/MainServer/Controllers/API/PlayOptionController.cs b/MainServer/Controllers/API/PlayOptionController.cs index 0a69e5d..67e6f7d 100644 --- a/MainServer/Controllers/API/PlayOptionController.cs +++ b/MainServer/Controllers/API/PlayOptionController.cs @@ -1,6 +1,6 @@ using Application.Api; -using Application.Common.Models; using Microsoft.AspNetCore.Mvc; +using Shared.Models; namespace MainServer.Controllers.API; diff --git a/MainServer/Controllers/API/ProfilesController.cs b/MainServer/Controllers/API/ProfilesController.cs index 93aea69..f3130ff 100644 --- a/MainServer/Controllers/API/ProfilesController.cs +++ b/MainServer/Controllers/API/ProfilesController.cs @@ -1,7 +1,7 @@ using Application.Api; -using Application.Common.Models; -using Application.Dto.Api; using Microsoft.AspNetCore.Mvc; +using Shared.Dto.Api; +using Shared.Models; namespace MainServer.Controllers.API; diff --git a/MainServer/Controllers/Game/CardController.cs b/MainServer/Controllers/Game/CardController.cs index 5cba455..936712b 100644 --- a/MainServer/Controllers/Game/CardController.cs +++ b/MainServer/Controllers/Game/CardController.cs @@ -1,5 +1,4 @@ using System.Net; -using Application.Common.Models; using Application.Game.Card; using Application.Game.Card.Management; using Application.Game.Card.OnlineMatching; @@ -8,6 +7,7 @@ using Application.Game.Card.Session; using Application.Game.Card.Write; using Domain.Enums; using Microsoft.AspNetCore.Mvc; +using Shared.Models; using Throw; namespace MainServer.Controllers.Game; diff --git a/MainServer/Controllers/Game/RankingController.cs b/MainServer/Controllers/Game/RankingController.cs index 64f7a50..0601dff 100644 --- a/MainServer/Controllers/Game/RankingController.cs +++ b/MainServer/Controllers/Game/RankingController.cs @@ -1,5 +1,4 @@ -using Application.Common.Models; -using Application.Game.Rank; +using Application.Game.Rank; using Domain.Enums; using Microsoft.AspNetCore.Mvc; using Throw; diff --git a/MainServer/Filters/ApiExceptionFilterAttributes.cs b/MainServer/Filters/ApiExceptionFilterAttributes.cs index b8965bd..4bb35c2 100644 --- a/MainServer/Filters/ApiExceptionFilterAttributes.cs +++ b/MainServer/Filters/ApiExceptionFilterAttributes.cs @@ -1,7 +1,7 @@ using System.Diagnostics; -using Application.Common.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; +using Shared.Models; namespace MainServer.Filters; diff --git a/MainServer/MainServer.csproj b/MainServer/MainServer.csproj index 4e28b64..ce904ef 100644 --- a/MainServer/MainServer.csproj +++ b/MainServer/MainServer.csproj @@ -11,6 +11,7 @@ + all @@ -65,15 +66,455 @@ PreserveNewest true + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + - + + + + <_ContentIncludedByDefault Remove="wwwroot\_framework\blazor.boot.json" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\blazor.webassembly.js" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\blazor.webassembly.js.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Domain.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Domain.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Domain.pdb" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Domain.pdb.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\dotnet.7.0.3.dfg4wgbqr1.js" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\dotnet.7.0.3.dfg4wgbqr1.js.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\dotnet.timezones.blat" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\dotnet.timezones.blat.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\dotnet.wasm" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\dotnet.wasm.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt.dat" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt.dat.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt_CJK.dat" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt_CJK.dat.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt_EFIGS.dat" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt_EFIGS.dat.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt_no_CJK.dat" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\icudt_no_CJK.dat.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.CSharp.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.CSharp.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Logging.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Logging.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Options.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Options.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Extensions.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.JSInterop.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.JSInterop.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.VisualBasic.Core.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.VisualBasic.Core.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.VisualBasic.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.VisualBasic.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Win32.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Win32.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Win32.Registry.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Microsoft.Win32.Registry.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\mscorlib.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\mscorlib.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\MudBlazor.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\MudBlazor.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\netstandard.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\netstandard.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Shared.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Shared.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Shared.pdb" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\Shared.pdb.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.AppContext.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.AppContext.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Buffers.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Buffers.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.Concurrent.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.Concurrent.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.Immutable.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.Immutable.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.NonGeneric.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.NonGeneric.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.Specialized.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Collections.Specialized.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.Annotations.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.Annotations.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.DataAnnotations.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.DataAnnotations.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.TypeConverter.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ComponentModel.TypeConverter.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Configuration.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Configuration.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Console.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Console.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Core.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Core.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Data.Common.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Data.Common.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Data.DataSetExtensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Data.DataSetExtensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Data.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Data.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Contracts.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Contracts.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Debug.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Debug.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Process.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Process.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.StackTrace.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.StackTrace.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Tools.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Tools.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.TraceSource.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.TraceSource.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Tracing.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Diagnostics.Tracing.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Drawing.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Drawing.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Drawing.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Drawing.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Dynamic.Runtime.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Dynamic.Runtime.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Formats.Asn1.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Formats.Asn1.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Formats.Tar.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Formats.Tar.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Globalization.Calendars.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Globalization.Calendars.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Globalization.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Globalization.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Globalization.Extensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Globalization.Extensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.Brotli.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.Brotli.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.FileSystem.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.FileSystem.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.ZipFile.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Compression.ZipFile.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.AccessControl.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.AccessControl.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.Watcher.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.FileSystem.Watcher.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.IsolatedStorage.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.IsolatedStorage.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.MemoryMappedFiles.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.MemoryMappedFiles.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Pipelines.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Pipelines.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Pipes.AccessControl.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Pipes.AccessControl.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Pipes.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.Pipes.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.Expressions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.Expressions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.Parallel.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.Parallel.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.Queryable.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Linq.Queryable.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Memory.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Memory.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Http.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Http.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Http.Json.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Http.Json.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.HttpListener.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.HttpListener.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Mail.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Mail.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.NameResolution.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.NameResolution.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.NetworkInformation.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.NetworkInformation.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Ping.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Ping.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Quic.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Quic.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Requests.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Requests.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Security.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Security.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.ServicePoint.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.ServicePoint.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Sockets.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.Sockets.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebClient.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebClient.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebHeaderCollection.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebHeaderCollection.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebProxy.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebProxy.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebSockets.Client.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebSockets.Client.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebSockets.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Net.WebSockets.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Numerics.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Numerics.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Numerics.Vectors.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Numerics.Vectors.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ObjectModel.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ObjectModel.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.CoreLib.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.CoreLib.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.DataContractSerialization.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.DataContractSerialization.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.Uri.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.Uri.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.Xml.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.Xml.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.Xml.Linq.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Private.Xml.Linq.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.DispatchProxy.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.DispatchProxy.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Emit.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Emit.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Emit.Lightweight.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Emit.Lightweight.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Extensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Extensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Metadata.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Metadata.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.TypeExtensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Reflection.TypeExtensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Resources.Reader.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Resources.Reader.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Resources.ResourceManager.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Resources.ResourceManager.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Resources.Writer.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Resources.Writer.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Extensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Extensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Handles.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Handles.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.InteropServices.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.InteropServices.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Intrinsics.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Intrinsics.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Loader.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Loader.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Numerics.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Numerics.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Formatters.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Formatters.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Json.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Json.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Xml.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Runtime.Serialization.Xml.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.AccessControl.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.AccessControl.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Claims.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Claims.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Algorithms.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Algorithms.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Cng.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Cng.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Csp.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Csp.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Encoding.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Encoding.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Primitives.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.Primitives.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Principal.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Principal.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Principal.Windows.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.Principal.Windows.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.SecureString.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Security.SecureString.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ServiceModel.Web.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ServiceModel.Web.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ServiceProcess.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ServiceProcess.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encoding.CodePages.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encoding.CodePages.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encoding.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encoding.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encoding.Extensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encoding.Extensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encodings.Web.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Encodings.Web.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Json.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.Json.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.RegularExpressions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Text.RegularExpressions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Channels.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Channels.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Overlapped.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Overlapped.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.Dataflow.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.Dataflow.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.Extensions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.Extensions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.Parallel.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Tasks.Parallel.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Thread.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Thread.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.ThreadPool.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.ThreadPool.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Timer.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Threading.Timer.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Transactions.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Transactions.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Transactions.Local.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Transactions.Local.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ValueTuple.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.ValueTuple.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Web.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Web.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Web.HttpUtility.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Web.HttpUtility.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Windows.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Windows.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.Linq.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.Linq.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.ReaderWriter.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.ReaderWriter.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.Serialization.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.Serialization.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XDocument.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XDocument.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XmlDocument.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XmlDocument.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XmlSerializer.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XmlSerializer.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XPath.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XPath.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XPath.XDocument.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\System.Xml.XPath.XDocument.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\WebUI.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\WebUI.dll.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\WebUI.pdb" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\WebUI.pdb.gz" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\WindowsBase.dll" /> + <_ContentIncludedByDefault Remove="wwwroot\_framework\WindowsBase.dll.gz" /> diff --git a/MainServer/Program.cs b/MainServer/Program.cs index e10870e..d0020b2 100644 --- a/MainServer/Program.cs +++ b/MainServer/Program.cs @@ -108,12 +108,14 @@ try contentTypeProvider.Mappings[".cmp"] = "text/plain"; contentTypeProvider.Mappings[".evt"] = "text/plain"; + app.UseBlazorFrameworkFiles(); app.UseStaticFiles(new StaticFileOptions { ContentTypeProvider = contentTypeProvider }); app.MapControllers(); + app.MapFallbackToFile("index.html"); app.Run(); } diff --git a/MainServer/Properties/launchSettings.json b/MainServer/Properties/launchSettings.json index a466b8b..a202104 100644 --- a/MainServer/Properties/launchSettings.json +++ b/MainServer/Properties/launchSettings.json @@ -13,8 +13,8 @@ "commandName": "Project", "dotnetRunMessages": true, "launchBrowser": true, - "launchUrl": "swagger", - "applicationUrl": "https://localhost:7114;http://localhost:5107", + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "http://localhost:5107", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/Application/Dto/Api/ClientCardDto.cs b/Shared/Dto/Api/ClientCardDto.cs similarity index 79% rename from Application/Dto/Api/ClientCardDto.cs rename to Shared/Dto/Api/ClientCardDto.cs index 40afae5..f02d9cc 100644 --- a/Application/Dto/Api/ClientCardDto.cs +++ b/Shared/Dto/Api/ClientCardDto.cs @@ -1,4 +1,4 @@ -namespace Application.Dto.Api; +namespace Shared.Dto.Api; public class ClientCardDto { diff --git a/Application/Dto/Api/FirstPlayOptionDto.cs b/Shared/Dto/Api/FirstPlayOptionDto.cs similarity index 90% rename from Application/Dto/Api/FirstPlayOptionDto.cs rename to Shared/Dto/Api/FirstPlayOptionDto.cs index 96ff164..d5d52b1 100644 --- a/Application/Dto/Api/FirstPlayOptionDto.cs +++ b/Shared/Dto/Api/FirstPlayOptionDto.cs @@ -1,6 +1,6 @@ using Domain.Enums; -namespace Application.Dto.Api; +namespace Shared.Dto.Api; public class FirstPlayOptionDto { diff --git a/Application/Dto/Api/MusicDetailDto.cs b/Shared/Dto/Api/MusicDetailDto.cs similarity index 81% rename from Application/Dto/Api/MusicDetailDto.cs rename to Shared/Dto/Api/MusicDetailDto.cs index c544cea..137da92 100644 --- a/Application/Dto/Api/MusicDetailDto.cs +++ b/Shared/Dto/Api/MusicDetailDto.cs @@ -1,4 +1,4 @@ -namespace Application.Dto.Api; +namespace Shared.Dto.Api; public class MusicDetailDto { diff --git a/Application/Dto/Api/SecondPlayOptionDto.cs b/Shared/Dto/Api/SecondPlayOptionDto.cs similarity index 77% rename from Application/Dto/Api/SecondPlayOptionDto.cs rename to Shared/Dto/Api/SecondPlayOptionDto.cs index ce50e0a..a20fdc8 100644 --- a/Application/Dto/Api/SecondPlayOptionDto.cs +++ b/Shared/Dto/Api/SecondPlayOptionDto.cs @@ -1,4 +1,4 @@ -namespace Application.Dto.Api; +namespace Shared.Dto.Api; public class SecondPlayOptionDto { diff --git a/Application/Common/Models/PlayOptionData.cs b/Shared/Models/PlayOptionData.cs similarity index 80% rename from Application/Common/Models/PlayOptionData.cs rename to Shared/Models/PlayOptionData.cs index 904db05..be47b4d 100644 --- a/Application/Common/Models/PlayOptionData.cs +++ b/Shared/Models/PlayOptionData.cs @@ -1,4 +1,6 @@ -namespace Application.Common.Models; +using Shared.Dto.Api; + +namespace Shared.Models; public class PlayOptionData { diff --git a/Application/Common/Models/ServiceError.cs b/Shared/Models/ServiceError.cs similarity index 99% rename from Application/Common/Models/ServiceError.cs rename to Shared/Models/ServiceError.cs index 851c24d..ac21b50 100644 --- a/Application/Common/Models/ServiceError.cs +++ b/Shared/Models/ServiceError.cs @@ -1,6 +1,6 @@ using Domain.Enums; -namespace Application.Common.Models; +namespace Shared.Models; /// /// All errors contained in ServiceResult objects must return an error of this type diff --git a/Application/Common/Models/ServiceResult.cs b/Shared/Models/ServiceResult.cs similarity index 95% rename from Application/Common/Models/ServiceResult.cs rename to Shared/Models/ServiceResult.cs index 9956fe8..b1a960d 100644 --- a/Application/Common/Models/ServiceResult.cs +++ b/Shared/Models/ServiceResult.cs @@ -1,4 +1,4 @@ -namespace Application.Common.Models; +namespace Shared.Models; /// /// A standard response for service calls. @@ -8,6 +8,8 @@ public class ServiceResult : ServiceResult { public T? Data { get; set; } + public ServiceResult() { } + public ServiceResult(T? data) { Data = data; diff --git a/Application/Common/Models/TotalResultData.cs b/Shared/Models/TotalResultData.cs similarity index 95% rename from Application/Common/Models/TotalResultData.cs rename to Shared/Models/TotalResultData.cs index fa0c97f..2a806c9 100644 --- a/Application/Common/Models/TotalResultData.cs +++ b/Shared/Models/TotalResultData.cs @@ -1,4 +1,4 @@ -namespace Application.Common.Models; +namespace Shared.Models; public class TotalResultData { diff --git a/Shared/Shared.csproj b/Shared/Shared.csproj new file mode 100644 index 0000000..6042819 --- /dev/null +++ b/Shared/Shared.csproj @@ -0,0 +1,17 @@ + + + + net7.0 + enable + enable + + + + + + + + + + + diff --git a/WebUI/Shared/MainLayout.razor b/WebUI/Common/MainLayout.razor similarity index 100% rename from WebUI/Shared/MainLayout.razor rename to WebUI/Common/MainLayout.razor diff --git a/WebUI/Common/Models/Avatar.cs b/WebUI/Common/Models/Avatar.cs new file mode 100644 index 0000000..11eb688 --- /dev/null +++ b/WebUI/Common/Models/Avatar.cs @@ -0,0 +1,8 @@ +namespace WebUI.Common.Models; + +public class Avatar +{ + public uint AvatarId { get; set; } + + public string AvatarName { get; set; } = string.Empty; +} \ No newline at end of file diff --git a/WebUI/Common/Models/Navigator.cs b/WebUI/Common/Models/Navigator.cs new file mode 100644 index 0000000..9821ac6 --- /dev/null +++ b/WebUI/Common/Models/Navigator.cs @@ -0,0 +1,26 @@ +namespace WebUI.Common.Models; + +public class Navigator +{ + public uint Id { get; set; } + + public string NavigatorName { get; set; } = string.Empty; + + public NavigatorGenre Genre { get; set; } + + public string IllustrationCredit { get; set; } = string.Empty; + + public string ToolTipJp { get; set; } = string.Empty; + + public string ToolTipEn { get; set; } = string.Empty; +} + +public enum NavigatorGenre +{ + Default = 1, + Original = 2, + Game = 3, + Touhou = 4, + Vocaloid = 5, + Collab = 6, +} \ No newline at end of file diff --git a/WebUI/Common/Models/Title.cs b/WebUI/Common/Models/Title.cs new file mode 100644 index 0000000..6481163 --- /dev/null +++ b/WebUI/Common/Models/Title.cs @@ -0,0 +1,49 @@ +namespace WebUI.Common.Models; + +public class Title +{ + public uint Id { get; set; } + + public string TitleName { get; set; } = string.Empty; + + public string UnlockRequirementJp { get; set; } = string.Empty; + + public string UnlockRequirementEn { get; set; } = string.Empty; + + public UnlockType UnlockType { get; set; } +} + +public enum UnlockType +{ + Invalid = 0, + Default = 1, + Clear = 2, + NoMiss = 3, + FullChain = 4, + SRankSimpleStages = 5, + SRankNormalStages = 6, + SRankHardStages = 7, + SRankExtraStages = 8, + SRankSNH = 9, + SPlusRankSNH = 10, + SPlusPlusRankSNH = 11, + Event = 12, + Prefecture = 13, + ChainMilestone = 14, + Adlibs = 15, + ConsequtiveNoMiss = 16, + ClearsUsingItems = 17, + Avatars = 18, + MultiplayerStarsTotal = 19, + SongSet20 = 20, + SongSet21 = 21, + SongSet22 = 22, + SongSet23 = 23, + SongSet24 = 24, + SongSet25 = 25, + SongSet26 = 26, + ProfileLevel = 27, + Perfect = 28, + OnlineMatching = 29, + Trophies = 30, +} \ No newline at end of file diff --git a/WebUI/Shared/NavMenu.razor b/WebUI/Common/NavMenu.razor similarity index 100% rename from WebUI/Shared/NavMenu.razor rename to WebUI/Common/NavMenu.razor diff --git a/WebUI/Common/SerializerContexts/SourceGenerationContext.cs b/WebUI/Common/SerializerContexts/SourceGenerationContext.cs new file mode 100644 index 0000000..e2dab72 --- /dev/null +++ b/WebUI/Common/SerializerContexts/SourceGenerationContext.cs @@ -0,0 +1,13 @@ +using System.Text.Json.Serialization; +using WebUI.Common.Models; + +namespace WebUI.Common.SerializerContexts; + +[JsonSourceGenerationOptions(WriteIndented = true)] +[JsonSerializable(typeof(List))] +[JsonSerializable(typeof(List))] +[JsonSerializable(typeof(List))] +internal partial class SourceGenerationContext : JsonSerializerContext +{ + +} \ No newline at end of file diff --git a/WebUI/Pages/Cards.razor b/WebUI/Pages/Cards.razor index fd0c3f0..016eba9 100644 --- a/WebUI/Pages/Cards.razor +++ b/WebUI/Pages/Cards.razor @@ -1,2 +1,73 @@ @page "/Cards" -<h3>Cards</h3> + +<PageTitle>Cards</PageTitle> + +<MudContainer> + @if (ErrorMessage != string.Empty) + { + <MudText Color="Color.Error" Typo="Typo.h3">@ErrorMessage</MudText> + return; + } + + @if (CardDtos is null) + { + <MudGrid> + @for (var i = 0; i < 5; i++) + { + <MudItem> + <MudCard> + <MudCardHeader> + <CardHeaderContent> + <MudSkeleton SkeletonType="SkeletonType.Rectangle" Height="32px"/> + </CardHeaderContent> + </MudCardHeader> + <MudCardContent> + <MudSkeleton Width="80px" Height="32px"/> + <MudSkeleton Width="147px" Height="28px"/> + </MudCardContent> + <MudCardActions> + <MudSkeleton SkeletonType="SkeletonType.Rectangle" Width="99px" Height="25px" Class="ml-2"/> + </MudCardActions> + </MudCard> + </MudItem> + } + </MudGrid> + return; + } + + @if (CardDtos.Count != 0) + { + <MudGrid> + @foreach (var card in CardDtos) + { + <MudItem> + <MudCard> + <MudCardHeader> + <CardHeaderContent> + <MudText Typo="Typo.h5">@card.PlayerName</MudText> + </CardHeaderContent> + <CardHeaderActions> + <MudIconButton Icon="@Icons.Material.Filled.Edit" Color="Color.Default" + OnClick="() => OnEditPlayerNameClicked(card)"/> + </CardHeaderActions> + </MudCardHeader> + <MudCardContent> + <MudText Style="font-weight: bold">Card ID</MudText> + <MudText>@card.CardId</MudText> + </MudCardContent> + <MudCardActions> + <MudButton Variant="Variant.Text" Color="Color.Primary"> + Check detail + </MudButton> + </MudCardActions> + </MudCard> + </MudItem> + } + </MudGrid> + return; + } + + <MudText Align="Align.Center" Typo="Typo.h3"> + No Data + </MudText> +</MudContainer> \ No newline at end of file diff --git a/WebUI/Pages/Cards.razor.cs b/WebUI/Pages/Cards.razor.cs index a46e1d6..07d0da8 100644 --- a/WebUI/Pages/Cards.razor.cs +++ b/WebUI/Pages/Cards.razor.cs @@ -1,14 +1,18 @@ using System.Net.Http.Json; -using Application.Common.Models; -using Application.Dto.Api; using Microsoft.AspNetCore.Components; +using MudBlazor; +using Shared.Dto.Api; +using Shared.Models; namespace WebUI.Pages; public partial class Cards { [Inject] - public HttpClient Client { get; set; } = null!; + public required HttpClient Client { get; set; } + + [Inject] + public required IDialogService DialogService { get; set; } private List<ClientCardDto>? CardDtos { get; set; } @@ -31,4 +35,17 @@ public partial class Cards } CardDtos = result.Data; } + + private async Task OnEditPlayerNameClicked(ClientCardDto card) + { + var options = new DialogOptions + { + CloseOnEscapeKey = false, + DisableBackdropClick = true, + FullWidth = true + }; + var parameters = new DialogParameters { { "Data", card } }; + var dialog = await DialogService.ShowAsync<ChangePlayerNameDialog>("Favorite", parameters, options); + var result = await dialog.Result; + } } \ No newline at end of file diff --git a/WebUI/Pages/ChangePlayerNameDialog.razor b/WebUI/Pages/ChangePlayerNameDialog.razor new file mode 100644 index 0000000..f83a6c7 --- /dev/null +++ b/WebUI/Pages/ChangePlayerNameDialog.razor @@ -0,0 +1,78 @@ +@using System.Text.RegularExpressions +@using Shared.Dto.Api +@using Shared.Models +@using Throw +@inject HttpClient Client +@inject ILogger<ChangePlayerNameDialog> Logger +@{ +#pragma warning disable CS8974 +} +<MudDialog> + <TitleContent> + <MudText Typo="Typo.h6"> + Change Player Name + </MudText> + </TitleContent> + <DialogContent> + <MudForm @bind-IsValid="IsValid"> + <MudTextField Value="@Data.CardId" Label="CardId" ReadOnly="true"/> + <MudTextField @bind-Value="Data.PlayerName" + Immediate="true" + Counter="PLAYER_NAME_MAX_LENGTH" + MaxLength="PLAYER_NAME_MAX_LENGTH" + Validation="ValidatePlayerName"/> + </MudForm> + </DialogContent> + <DialogActions> + <MudButton OnClick="Cancel">Cancel</MudButton> + <MudButton Color="Color.Primary" OnClick="Submit" Disabled="@(!IsValid)">Confirm</MudButton> + </DialogActions> +</MudDialog> + +@code { + [CascadingParameter] + MudDialogInstance MudDialog { get; set; } = null!; + + [Parameter] + public ClientCardDto Data { get; set; } = null!; + + private string originalName = string.Empty; + + private bool IsValid { get; set; } + + private const int PLAYER_NAME_MAX_LENGTH = 8; + + protected override void OnInitialized() + { + base.OnInitialized(); + originalName = new string(Data.PlayerName); + } + + async Task Submit() + { + Logger.LogInformation("Data is {CardId}, {Name}", Data.CardId, Data.PlayerName); + var response = await Client.PostAsJsonAsync("api/Profiles/PlayerName", Data); + var result = await response.Content.ReadFromJsonAsync<ServiceResult<bool>>(); + result.ThrowIfNull(); + Logger.LogInformation("SetPlayerName result is {Result}", result.Succeeded); + MudDialog.Close(DialogResult.Ok(result)); + } + + void Cancel() + { + Data.PlayerName = originalName; + MudDialog.Cancel(); + } + + private static string? ValidatePlayerName(string playerName) + { + const string pattern = @"^[a-zA-Z0-9!?,./\-+:<>_\\@*#&=() ]{1,8}$"; + + return playerName.Length switch + { + 0 => "Player name cannot be empty!", + > PLAYER_NAME_MAX_LENGTH => "Player name cannot be longer than 8 characters!", + _ => !Regex.IsMatch(playerName, pattern) ? "Player name contains invalid character!" : null + }; + } +} \ No newline at end of file diff --git a/WebUI/Program.cs b/WebUI/Program.cs index 0b1e10a..7cd43cc 100644 --- a/WebUI/Program.cs +++ b/WebUI/Program.cs @@ -2,12 +2,19 @@ using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.WebAssembly.Hosting; using WebUI; using MudBlazor.Services; +using WebUI.Services; var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add<App>("#app"); builder.RootComponents.Add<HeadOutlet>("head::after"); -builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); +builder.Services.AddSingleton(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); builder.Services.AddMudServices(); +builder.Services.AddSingleton<IDataService, DataService>(); -await builder.Build().RunAsync(); \ No newline at end of file +var host = builder.Build(); + +var service = host.Services.GetRequiredService<IDataService>(); +await service.InitializeAsync(); + +await host.RunAsync(); \ No newline at end of file diff --git a/WebUI/Properties/launchSettings.json b/WebUI/Properties/launchSettings.json index bb34c40..32daf4c 100644 --- a/WebUI/Properties/launchSettings.json +++ b/WebUI/Properties/launchSettings.json @@ -16,12 +16,12 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "Mudblazor.Template": { + "WebUI": { "commandName": "Project", - "dotnetRunMessages": "true", + "dotnetRunMessages": true, "launchBrowser": true, "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", - "applicationUrl": "https://localhost:5001;http://localhost:5000", + "applicationUrl": "http://localhost:5107", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/WebUI/Services/DataService.cs b/WebUI/Services/DataService.cs new file mode 100644 index 0000000..042de51 --- /dev/null +++ b/WebUI/Services/DataService.cs @@ -0,0 +1,53 @@ +using System.Collections.ObjectModel; +using System.Net.Http.Json; +using Throw; +using WebUI.Common.Models; +using SourceGenerationContext = WebUI.Common.SerializerContexts.SourceGenerationContext; + +namespace WebUI.Services; + +public class DataService : IDataService +{ + private Dictionary<uint, Avatar> avatars = new(); + + private Dictionary<uint, Navigator> navigators = new(); + + private Dictionary<uint, Title> titles = new(); + + private readonly HttpClient client; + + public DataService(HttpClient client) + { + this.client = client; + } + + public async Task InitializeAsync() + { + var avatarList = await client.GetFromJsonAsync("data/Avatars.json", SourceGenerationContext.Default.ListAvatar); + avatarList.ThrowIfNull(); + avatars = avatarList.ToDictionary(avatar => avatar.AvatarId); + + var navigatorList = await client.GetFromJsonAsync("data/Navigators.json", SourceGenerationContext.Default.ListNavigator); + navigatorList.ThrowIfNull(); + navigators = navigatorList.ToDictionary(navigator => navigator.Id); + + var titleList = await client.GetFromJsonAsync("data/Titles.json", SourceGenerationContext.Default.ListTitle); + titleList.ThrowIfNull(); + titles = titleList.ToDictionary(title => title.Id); + } + + public IReadOnlyDictionary<uint, Avatar> GetAvatars() + { + return new ReadOnlyDictionary<uint, Avatar>(avatars); + } + + public IReadOnlyDictionary<uint, Navigator> GetNavigators() + { + return new ReadOnlyDictionary<uint, Navigator>(navigators); + } + + public IReadOnlyDictionary<uint, Title> GetTitles() + { + return new ReadOnlyDictionary<uint, Title>(titles); + } +} \ No newline at end of file diff --git a/WebUI/Services/IDataService.cs b/WebUI/Services/IDataService.cs new file mode 100644 index 0000000..8815b41 --- /dev/null +++ b/WebUI/Services/IDataService.cs @@ -0,0 +1,15 @@ +using System.Collections.Immutable; +using WebUI.Common.Models; + +namespace WebUI.Services; + +public interface IDataService +{ + public Task InitializeAsync(); + + public IReadOnlyDictionary<uint, Avatar> GetAvatars(); + + public IReadOnlyDictionary<uint, Navigator> GetNavigators(); + + public IReadOnlyDictionary<uint, Title> GetTitles(); +} \ No newline at end of file diff --git a/WebUI/WebUI.csproj b/WebUI/WebUI.csproj index 3dc207e..c9f5a90 100644 --- a/WebUI/WebUI.csproj +++ b/WebUI/WebUI.csproj @@ -10,10 +10,11 @@ <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.3" /> <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.3" PrivateAssets="all" /> <PackageReference Include="MudBlazor" Version="6.1.9" /> + <PackageReference Include="Throw" Version="1.3.1" /> </ItemGroup> <ItemGroup> - <ProjectReference Include="..\Application\Application.csproj" /> + <ProjectReference Include="..\Shared\Shared.csproj" /> </ItemGroup> diff --git a/WebUI/_Imports.razor b/WebUI/_Imports.razor index 33f26df..1199b20 100644 --- a/WebUI/_Imports.razor +++ b/WebUI/_Imports.razor @@ -8,4 +8,4 @@ @using Microsoft.JSInterop @using MudBlazor @using WebUI -@using WebUI.Shared \ No newline at end of file +@using WebUI.Common \ No newline at end of file diff --git a/WebUI/wwwroot/css/app.css b/WebUI/wwwroot/css/app.css new file mode 100644 index 0000000..8034dcc --- /dev/null +++ b/WebUI/wwwroot/css/app.css @@ -0,0 +1,101 @@ +@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); + +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +h1:focus { + outline: none; +} + +a, .btn-link { + color: #0071c1; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { + box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; +} + +.content { + padding-top: 1.1rem; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid red; +} + +.validation-message { + color: red; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.loading-progress { + position: relative; + display: block; + width: 8rem; + height: 8rem; + margin: 20vh auto 1rem auto; +} + + .loading-progress circle { + fill: none; + stroke: #e0e0e0; + stroke-width: 0.6rem; + transform-origin: 50% 50%; + transform: rotate(-90deg); + } + + .loading-progress circle:last-child { + stroke: #1b6ec2; + stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%; + transition: stroke-dasharray 0.05s ease-in-out; + } + +.loading-progress-text { + position: absolute; + text-align: center; + font-weight: bold; + inset: calc(20vh + 3.25rem) 0 auto 0.2rem; +} + + .loading-progress-text:after { + content: var(--blazor-load-percentage-text, "Loading"); + } diff --git a/WebUI/wwwroot/css/bootstrap/bootstrap.min.css b/WebUI/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..02ae65b --- /dev/null +++ b/WebUI/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/WebUI/wwwroot/css/bootstrap/bootstrap.min.css.map b/WebUI/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 0000000..afcd9e3 --- /dev/null +++ b/WebUI/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"iBAAA;;;;;ACAA,MAQI,UAAA,QAAA,YAAA,QAAA,YAAA,QAAA,UAAA,QAAA,SAAA,QAAA,YAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAAA,UAAA,QAAA,WAAA,KAAA,UAAA,QAAA,eAAA,QAIA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAIA,aAAA,QAAA,eAAA,QAAA,aAAA,QAAA,UAAA,QAAA,aAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAIA,iBAAA,EAAA,CAAA,GAAA,CAAA,IAAA,mBAAA,GAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,EAAA,CAAA,GAAA,CAAA,GAAA,cAAA,EAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,GAAA,CAAA,GAAA,CAAA,EAAA,gBAAA,GAAA,CAAA,EAAA,CAAA,GAAA,eAAA,GAAA,CAAA,GAAA,CAAA,IAAA,cAAA,EAAA,CAAA,EAAA,CAAA,GAGF,eAAA,GAAA,CAAA,GAAA,CAAA,IACA,eAAA,CAAA,CAAA,CAAA,CAAA,EACA,cAAA,EAAA,CAAA,EAAA,CAAA,GAMA,qBAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,oBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UACA,cAAA,2EAQA,sBAAA,0BACA,oBAAA,KACA,sBAAA,IACA,sBAAA,IACA,gBAAA,QAIA,aAAA,KClCF,EC+CA,QADA,SD3CE,WAAA,WAeE,8CANJ,MAOM,gBAAA,QAcN,KACE,OAAA,EACA,YAAA,2BEmPI,UAAA,yBFjPJ,YAAA,2BACA,YAAA,2BACA,MAAA,qBACA,WAAA,0BACA,iBAAA,kBACA,yBAAA,KACA,4BAAA,YAUF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,IAAA,IAAA,IAAA,IAAA,IAAA,IAAA,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,IAAA,GEwMQ,UAAA,uBAlKJ,0BFtCJ,IAAA,GE+MQ,UAAA,QF1MR,IAAA,GEmMQ,UAAA,sBAlKJ,0BFjCJ,IAAA,GE0MQ,UAAA,MFrMR,IAAA,GE8LQ,UAAA,oBAlKJ,0BF5BJ,IAAA,GEqMQ,UAAA,SFhMR,IAAA,GEyLQ,UAAA,sBAlKJ,0BFvBJ,IAAA,GEgMQ,UAAA,QF3LR,IAAA,GEgLM,UAAA,QF3KN,IAAA,GE2KM,UAAA,KFhKN,EACE,WAAA,EACA,cAAA,KCmBF,6BDRA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GCIA,GDFE,aAAA,KCQF,GDLA,GCIA,GDDE,WAAA,EACA,cAAA,KAGF,MCKA,MACA,MAFA,MDAE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,ECNA,ODQE,YAAA,OAQF,OAAA,ME4EM,UAAA,OFrEN,MAAA,KACE,QAAA,KACA,iBAAA,QASF,ICpBA,IDsBE,SAAA,SEwDI,UAAA,MFtDJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KCxBJ,KACA,ID8BA,IC7BA,KDiCE,YAAA,yBEcI,UAAA,IFZJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEAI,UAAA,OFKJ,SELI,UAAA,QFOF,MAAA,QACA,WAAA,OAIJ,KEZM,UAAA,OFcJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,MExBI,UAAA,OF0BJ,MAAA,KACA,iBAAA,QG7SE,cAAA,MHgTF,QACE,QAAA,EE/BE,UAAA,IFiCF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICjDA,IDmDE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBCxDF,MAGA,GAFA,MAGA,GDuDA,MCzDA,GD+DE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,ECtEF,OD2EA,MCzEA,SADA,OAEA,SD6EE,OAAA,EACA,YAAA,QE9HI,UAAA,QFgIJ,YAAA,QAIF,OC5EA,OD8EE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KClFF,cACA,aACA,cDwFA,OAIE,mBAAA,OCxFF,6BACA,4BACA,6BDyFI,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,MEnNM,UAAA,sBFsNN,YAAA,QExXE,0BFiXJ,OExMQ,UAAA,QFiNN,SACE,MAAA,KChGJ,kCDuGA,uCCxGA,mCADA,+BAGA,oCAJA,6BAKA,mCD4GE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA,eInlBF,MFyQM,UAAA,QEvQJ,YAAA,IAKA,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QEvPR,eCrDE,aAAA,EACA,WAAA,KDyDF,aC1DE,aAAA,EACA,WAAA,KD4DF,kBACE,QAAA,aAEA,mCACE,aAAA,MAUJ,YFsNM,UAAA,OEpNJ,eAAA,UAIF,YACE,cAAA,KF+MI,UAAA,QE5MJ,wBACE,cAAA,EAIJ,mBACE,WAAA,MACA,cAAA,KFqMI,UAAA,OEnMJ,MAAA,QAEA,2BACE,QAAA,KE9FJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QHGE,cAAA,OIRF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBJ+PM,UAAA,OI7PJ,MAAA,QElCA,WPqmBF,iBAGA,cACA,cACA,cAHA,cADA,eQzmBE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBF5CE,WAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cAAA,cACE,UAAA,OE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QGfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCYF,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KXusBR,MWrsBU,cAAA,EAGF,KXusBR,MWrsBU,cAAA,EAPF,KXitBR,MW/sBU,cAAA,QAGF,KXitBR,MW/sBU,cAAA,QAPF,KX2tBR,MWztBU,cAAA,OAGF,KX2tBR,MWztBU,cAAA,OAPF,KXquBR,MWnuBU,cAAA,KAGF,KXquBR,MWnuBU,cAAA,KAPF,KX+uBR,MW7uBU,cAAA,OAGF,KX+uBR,MW7uBU,cAAA,OAPF,KXyvBR,MWvvBU,cAAA,KAGF,KXyvBR,MWvvBU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX45BR,SW15BU,cAAA,EAGF,QX45BR,SW15BU,cAAA,EAPF,QXs6BR,SWp6BU,cAAA,QAGF,QXs6BR,SWp6BU,cAAA,QAPF,QXg7BR,SW96BU,cAAA,OAGF,QXg7BR,SW96BU,cAAA,OAPF,QX07BR,SWx7BU,cAAA,KAGF,QX07BR,SWx7BU,cAAA,KAPF,QXo8BR,SWl8BU,cAAA,OAGF,QXo8BR,SWl8BU,cAAA,OAPF,QX88BR,SW58BU,cAAA,KAGF,QX88BR,SW58BU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXinCR,SW/mCU,cAAA,EAGF,QXinCR,SW/mCU,cAAA,EAPF,QX2nCR,SWznCU,cAAA,QAGF,QX2nCR,SWznCU,cAAA,QAPF,QXqoCR,SWnoCU,cAAA,OAGF,QXqoCR,SWnoCU,cAAA,OAPF,QX+oCR,SW7oCU,cAAA,KAGF,QX+oCR,SW7oCU,cAAA,KAPF,QXypCR,SWvpCU,cAAA,OAGF,QXypCR,SWvpCU,cAAA,OAPF,QXmqCR,SWjqCU,cAAA,KAGF,QXmqCR,SWjqCU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXs0CR,SWp0CU,cAAA,EAGF,QXs0CR,SWp0CU,cAAA,EAPF,QXg1CR,SW90CU,cAAA,QAGF,QXg1CR,SW90CU,cAAA,QAPF,QX01CR,SWx1CU,cAAA,OAGF,QX01CR,SWx1CU,cAAA,OAPF,QXo2CR,SWl2CU,cAAA,KAGF,QXo2CR,SWl2CU,cAAA,KAPF,QX82CR,SW52CU,cAAA,OAGF,QX82CR,SW52CU,cAAA,OAPF,QXw3CR,SWt3CU,cAAA,KAGF,QXw3CR,SWt3CU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX2hDR,SWzhDU,cAAA,EAGF,QX2hDR,SWzhDU,cAAA,EAPF,QXqiDR,SWniDU,cAAA,QAGF,QXqiDR,SWniDU,cAAA,QAPF,QX+iDR,SW7iDU,cAAA,OAGF,QX+iDR,SW7iDU,cAAA,OAPF,QXyjDR,SWvjDU,cAAA,KAGF,QXyjDR,SWvjDU,cAAA,KAPF,QXmkDR,SWjkDU,cAAA,OAGF,QXmkDR,SWjkDU,cAAA,OAPF,QX6kDR,SW3kDU,cAAA,KAGF,QX6kDR,SW3kDU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SXgvDR,UW9uDU,cAAA,EAGF,SXgvDR,UW9uDU,cAAA,EAPF,SX0vDR,UWxvDU,cAAA,QAGF,SX0vDR,UWxvDU,cAAA,QAPF,SXowDR,UWlwDU,cAAA,OAGF,SXowDR,UWlwDU,cAAA,OAPF,SX8wDR,UW5wDU,cAAA,KAGF,SX8wDR,UW5wDU,cAAA,KAPF,SXwxDR,UWtxDU,cAAA,OAGF,SXwxDR,UWtxDU,cAAA,OAPF,SXkyDR,UWhyDU,cAAA,KAGF,SXkyDR,UWhyDU,cAAA,MCpHV,OACE,cAAA,YACA,qBAAA,YACA,yBAAA,QACA,sBAAA,oBACA,wBAAA,QACA,qBAAA,mBACA,uBAAA,QACA,oBAAA,qBAEA,MAAA,KACA,cAAA,KACA,MAAA,QACA,eAAA,IACA,aAAA,QAOA,yBACE,QAAA,MAAA,MACA,iBAAA,mBACA,oBAAA,IACA,WAAA,MAAA,EAAA,EAAA,EAAA,OAAA,0BAGF,aACE,eAAA,QAGF,aACE,eAAA,OAIF,uCACE,oBAAA,aASJ,aACE,aAAA,IAUA,4BACE,QAAA,OAAA,OAeF,gCACE,aAAA,IAAA,EAGA,kCACE,aAAA,EAAA,IAOJ,oCACE,oBAAA,EASF,yCACE,qBAAA,2BACA,MAAA,8BAQJ,cACE,qBAAA,0BACA,MAAA,6BAQA,4BACE,qBAAA,yBACA,MAAA,4BCxHF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,iBAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,cAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,aAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QDgIA,kBACE,WAAA,KACA,2BAAA,MHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,sBACE,WAAA,KACA,2BAAA,OE/IN,YACE,cAAA,MASF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EboRI,UAAA,QahRJ,YAAA,IAIF,mBACE,YAAA,kBACA,eAAA,kBb0QI,UAAA,QatQN,mBACE,YAAA,mBACA,eAAA,mBboQI,UAAA,QcjSN,WACE,WAAA,OdgSI,UAAA,Oc5RJ,MAAA,QCLF,cACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,Of8RI,UAAA,Ke3RJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KdGE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDhBN,cCiBQ,WAAA,MDGN,yBACE,SAAA,OAEA,wDACE,OAAA,QAKJ,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAOJ,2CAEE,OAAA,MAIF,gCACE,MAAA,QAEA,QAAA,EAHF,2BACE,MAAA,QAEA,QAAA,EAQF,uBAAA,wBAEE,iBAAA,QAGA,QAAA,EAIF,oCACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE3EF,iBAAA,QF6EE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECtEE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDuDJ,oCCtDM,WAAA,MDqEN,yEACE,iBAAA,QAGF,0CACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE9FF,iBAAA,QFgGE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECzFE,mBAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCD0EJ,0CCzEM,mBAAA,KAAA,WAAA,MDwFN,+EACE,iBAAA,QASJ,wBACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,EACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAEA,wCAAA,wCAEE,cAAA,EACA,aAAA,EAWJ,iBACE,WAAA,0BACA,QAAA,OAAA,MfmJI,UAAA,QClRF,cAAA,McmIF,uCACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAGF,6CACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAIJ,iBACE,WAAA,yBACA,QAAA,MAAA,KfgII,UAAA,QClRF,cAAA,McsJF,uCACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAGF,6CACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAQF,sBACE,WAAA,2BAGF,yBACE,WAAA,0BAGF,yBACE,WAAA,yBAKJ,oBACE,MAAA,KACA,OAAA,KACA,QAAA,QAEA,mDACE,OAAA,QAGF,uCACE,OAAA,Md/LA,cAAA,OcmMF,0CACE,OAAA,MdpMA,cAAA,OiBdJ,aACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,QAAA,QAAA,OAEA,mBAAA,oBlB2RI,UAAA,KkBxRJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,iBAAA,gOACA,kBAAA,UACA,oBAAA,MAAA,OAAA,OACA,gBAAA,KAAA,KACA,OAAA,IAAA,MAAA,QjBFE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YESJ,mBAAA,KAAA,gBAAA,KAAA,WAAA,KFLI,uCEfN,aFgBQ,WAAA,MEMN,mBACE,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,uBAAA,mCAEE,cAAA,OACA,iBAAA,KAGF,sBAEE,iBAAA,QAKF,4BACE,MAAA,YACA,YAAA,EAAA,EAAA,EAAA,QAIJ,gBACE,YAAA,OACA,eAAA,OACA,aAAA,MlByOI,UAAA,QkBrON,gBACE,YAAA,MACA,eAAA,MACA,aAAA,KlBkOI,UAAA,QmBjSN,YACE,QAAA,MACA,WAAA,OACA,aAAA,MACA,cAAA,QAEA,8BACE,MAAA,KACA,YAAA,OAIJ,kBACE,MAAA,IACA,OAAA,IACA,WAAA,MACA,eAAA,IACA,iBAAA,KACA,kBAAA,UACA,oBAAA,OACA,gBAAA,QACA,OAAA,IAAA,MAAA,gBACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KACA,2BAAA,MAAA,aAAA,MAGA,iClBXE,cAAA,MkBeF,8BAEE,cAAA,IAGF,yBACE,OAAA,gBAGF,wBACE,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,0BACE,iBAAA,QACA,aAAA,QAEA,yCAII,iBAAA,8NAIJ,sCAII,iBAAA,sIAKN,+CACE,iBAAA,QACA,aAAA,QAKE,iBAAA,wNAIJ,2BACE,eAAA,KACA,OAAA,KACA,QAAA,GAOA,6CAAA,8CACE,QAAA,GAcN,aACE,aAAA,MAEA,+BACE,MAAA,IACA,YAAA,OACA,iBAAA,uJACA,oBAAA,KAAA,OlB9FA,cAAA,IeHE,WAAA,oBAAA,KAAA,YAIA,uCGyFJ,+BHxFM,WAAA,MGgGJ,qCACE,iBAAA,yIAGF,uCACE,oBAAA,MAAA,OAKE,iBAAA,sIAMR,mBACE,QAAA,aACA,aAAA,KAGF,WACE,SAAA,SACA,KAAA,cACA,eAAA,KAIE,yBAAA,0BACE,eAAA,KACA,OAAA,KACA,QAAA,IC9IN,YACE,MAAA,KACA,OAAA,OACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAEA,kBACE,QAAA,EAIA,wCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAC1B,oCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAG5B,8BACE,OAAA,EAGF,kCACE,MAAA,KACA,OAAA,KACA,WAAA,QHzBF,iBAAA,QG2BE,OAAA,EnBZA,cAAA,KeHE,mBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YImBF,mBAAA,KAAA,WAAA,KJfE,uCIMJ,kCJLM,mBAAA,KAAA,WAAA,MIgBJ,yCHjCF,iBAAA,QGsCA,2CACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnB7BA,cAAA,KmBkCF,8BACE,MAAA,KACA,OAAA,KHnDF,iBAAA,QGqDE,OAAA,EnBtCA,cAAA,KeHE,gBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YI6CF,gBAAA,KAAA,WAAA,KJzCE,uCIiCJ,8BJhCM,gBAAA,KAAA,WAAA,MI0CJ,qCH3DF,iBAAA,QGgEA,8BACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnBvDA,cAAA,KmB4DF,qBACE,eAAA,KAEA,2CACE,iBAAA,QAGF,uCACE,iBAAA,QCvFN,eACE,SAAA,SAEA,6BtB+iFF,4BsB7iFI,OAAA,mBACA,YAAA,KAGF,qBACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KACA,QAAA,KAAA,OACA,eAAA,KACA,OAAA,IAAA,MAAA,YACA,iBAAA,EAAA,ELDE,WAAA,QAAA,IAAA,WAAA,CAAA,UAAA,IAAA,YAIA,uCKXJ,qBLYM,WAAA,MKCN,6BACE,QAAA,KAAA,OAEA,+CACE,MAAA,YADF,0CACE,MAAA,YAGF,0DAEE,YAAA,SACA,eAAA,QAHF,mCAAA,qDAEE,YAAA,SACA,eAAA,QAGF,8CACE,YAAA,SACA,eAAA,QAIJ,4BACE,YAAA,SACA,eAAA,QAMA,gEACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBAFF,yCtBmjFJ,2DACA,kCsBnjFM,QAAA,IACA,UAAA,WAAA,mBAAA,mBAKF,oDACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBCtDN,aACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,QACA,MAAA,KAEA,2BvB2mFF,0BuBzmFI,SAAA,SACA,KAAA,EAAA,EAAA,KACA,MAAA,GACA,UAAA,EAIF,iCvBymFF,gCuBvmFI,QAAA,EAMF,kBACE,SAAA,SACA,QAAA,EAEA,wBACE,QAAA,EAWN,kBACE,QAAA,KACA,YAAA,OACA,QAAA,QAAA,OtBsPI,UAAA,KsBpPJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QrBpCE,cAAA,OFuoFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,MAAA,KtBgOI,UAAA,QClRF,cAAA,MFgpFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,OAAA,MtBuNI,UAAA,QClRF,cAAA,MqBgEJ,6BvBulFA,6BuBrlFE,cAAA,KvB0lFF,uEuB7kFI,8FrB/DA,wBAAA,EACA,2BAAA,EFgpFJ,iEuB3kFI,2FrBtEA,wBAAA,EACA,2BAAA,EqBgFF,0IACE,YAAA,KrBpEA,uBAAA,EACA,0BAAA,EsBzBF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OFmsFJ,0BACA,yBwBrqFI,sCxBmqFJ,qCwBjqFM,QAAA,MA9CF,uBAAA,mCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,6BAAA,yCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,2CAAA,+BAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,sBAAA,kCAiFE,aAAA,QAGE,kDAAA,gDAAA,8DAAA,4DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2OACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,4BAAA,wCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,2BAAA,uCAsGE,aAAA,QAEA,mCAAA,+CACE,iBAAA,QAGF,iCAAA,6CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,6CAAA,yDACE,MAAA,QAKJ,qDACE,YAAA,KAvHF,oCxBwwFJ,mCwBxwFI,gDxBuwFJ,+CwBxoFQ,QAAA,EAIF,0CxB0oFN,yCwB1oFM,sDxByoFN,qDwBxoFQ,QAAA,EAjHN,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OF4xFJ,8BACA,6BwB9vFI,0CxB4vFJ,yCwB1vFM,QAAA,MA9CF,yBAAA,qCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2TACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,+BAAA,2CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,6CAAA,iCAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,wBAAA,oCAiFE,aAAA,QAGE,oDAAA,kDAAA,gEAAA,8DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2TACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,8BAAA,0CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,6BAAA,yCAsGE,aAAA,QAEA,qCAAA,iDACE,iBAAA,QAGF,mCAAA,+CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,+CAAA,2DACE,MAAA,QAKJ,uDACE,YAAA,KAvHF,sCxBi2FJ,qCwBj2FI,kDxBg2FJ,iDwB/tFQ,QAAA,EAEF,4CxBmuFN,2CwBnuFM,wDxBkuFN,uDwBjuFQ,QAAA,ECtIR,KACE,QAAA,aAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,gBAAA,KAEA,eAAA,OACA,OAAA,QACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YC8GA,QAAA,QAAA,OzBsKI,UAAA,KClRF,cAAA,OeHE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCQhBN,KRiBQ,WAAA,MQAN,WACE,MAAA,QAIF,sBAAA,WAEE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAcF,cAAA,cAAA,uBAGE,eAAA,KACA,QAAA,IAYF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,eCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,qBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,gCAAA,qBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,iCAAA,kCAAA,sBAAA,sBAAA,qCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,uCAAA,wCAAA,4BAAA,4BAAA,2CAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,wBAAA,wBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,YCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,kBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,6BAAA,kBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,8BAAA,+BAAA,mBAAA,mBAAA,kCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,oCAAA,qCAAA,yBAAA,yBAAA,wCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,qBAAA,qBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,WCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,iBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,4BAAA,iBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,6BAAA,8BAAA,kBAAA,kBAAA,iCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,mCAAA,oCAAA,wBAAA,wBAAA,uCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,oBAAA,oBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDNF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,uBCmBA,MAAA,QACA,aAAA,QAEA,6BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wCAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,yCAAA,0CAAA,8BAAA,4CAAA,8BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+CAAA,gDAAA,oCAAA,kDAAA,oCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,gCAAA,gCAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,oBCmBA,MAAA,QACA,aAAA,QAEA,0BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,qCAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,sCAAA,uCAAA,2BAAA,yCAAA,2BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,4CAAA,6CAAA,iCAAA,+CAAA,iCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,6BAAA,6BAEE,MAAA,QACA,iBAAA,YDvDF,mBCmBA,MAAA,QACA,aAAA,QAEA,yBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,oCAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,qCAAA,sCAAA,0BAAA,wCAAA,0BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,2CAAA,4CAAA,gCAAA,8CAAA,gCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,4BAAA,4BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YD3CJ,UACE,YAAA,IACA,MAAA,QACA,gBAAA,UAEA,gBACE,MAAA,QAQF,mBAAA,mBAEE,MAAA,QAWJ,mBAAA,QCuBE,QAAA,MAAA,KzBsKI,UAAA,QClRF,cAAA,MuByFJ,mBAAA,QCmBE,QAAA,OAAA,MzBsKI,UAAA,QClRF,cAAA,MyBnBJ,MVgBM,WAAA,QAAA,KAAA,OAIA,uCUpBN,MVqBQ,WAAA,MUlBN,iBACE,QAAA,EAMF,qBACE,QAAA,KAIJ,YACE,OAAA,EACA,SAAA,OVDI,WAAA,OAAA,KAAA,KAIA,uCULN,YVMQ,WAAA,MUDN,gCACE,MAAA,EACA,OAAA,KVNE,WAAA,MAAA,KAAA,KAIA,uCUAJ,gCVCM,WAAA,MjBs3GR,UADA,SAEA,W4B34GA,QAIE,SAAA,SAGF,iBACE,YAAA,OCqBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED3CN,eACE,SAAA,SACA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,E3B+QI,UAAA,K2B7QJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gB1BVE,cAAA,O0BcF,+BACE,IAAA,KACA,KAAA,EACA,WAAA,QAYA,qBACE,cAAA,MAEA,qCACE,MAAA,KACA,KAAA,EAIJ,mBACE,cAAA,IAEA,mCACE,MAAA,EACA,KAAA,KnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,yBACE,cAAA,MAEA,yCACE,MAAA,KACA,KAAA,EAIJ,uBACE,cAAA,IAEA,uCACE,MAAA,EACA,KAAA,MAUN,uCACE,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC9CA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,ED0BJ,wCACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC5DA,iCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,uCACE,YAAA,EDoCF,iCACE,eAAA,EAMJ,0CACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC7EA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAWA,mCACE,QAAA,KAGF,oCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,yCACE,YAAA,EDqDF,oCACE,eAAA,EAON,kBACE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,gBAMF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,KACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,gBAAA,KACA,YAAA,OACA,iBAAA,YACA,OAAA,EAcA,qBAAA,qBAEE,MAAA,QVzJF,iBAAA,QU8JA,sBAAA,sBAEE,MAAA,KACA,gBAAA,KVjKF,iBAAA,QUqKA,wBAAA,wBAEE,MAAA,QACA,eAAA,KACA,iBAAA,YAMJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,KACA,cAAA,E3B0GI,UAAA,Q2BxGJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,KACA,MAAA,QAIF,oBACE,MAAA,QACA,iBAAA,QACA,aAAA,gBAGA,mCACE,MAAA,QAEA,yCAAA,yCAEE,MAAA,KVhNJ,iBAAA,sBUoNE,0CAAA,0CAEE,MAAA,KVtNJ,iBAAA,QU0NE,4CAAA,4CAEE,MAAA,QAIJ,sCACE,aAAA,gBAGF,wCACE,MAAA,QAGF,qCACE,MAAA,QE5OJ,W9B2rHA,oB8BzrHE,SAAA,SACA,QAAA,YACA,eAAA,O9B6rHF,yB8B3rHE,gBACE,SAAA,SACA,KAAA,EAAA,EAAA,K9BmsHJ,4CACA,0CAIA,gCADA,gCADA,+BADA,+B8BhsHE,mC9ByrHF,iCAIA,uBADA,uBADA,sBADA,sB8BprHI,QAAA,EAKJ,aACE,QAAA,KACA,UAAA,KACA,gBAAA,WAEA,0BACE,MAAA,K9BgsHJ,wC8B1rHE,kCAEE,YAAA,K9B4rHJ,4C8BxrHE,uD5BRE,wBAAA,EACA,2BAAA,EFqsHJ,6C8BrrHE,+B9BorHF,iCEvrHI,uBAAA,EACA,0BAAA,E4BqBJ,uBACE,cAAA,SACA,aAAA,SAEA,8BAAA,uCAAA,sCAGE,YAAA,EAGF,0CACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,eAAA,OACA,YAAA,WACA,gBAAA,OAEA,yB9BmpHF,+B8BjpHI,MAAA,K9BqpHJ,iD8BlpHE,2CAEE,WAAA,K9BopHJ,qD8BhpHE,gE5BvFE,2BAAA,EACA,0BAAA,EF2uHJ,sD8BhpHE,8B5B1GE,uBAAA,EACA,wBAAA,E6BxBJ,KACE,QAAA,KACA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,KAGA,MAAA,QACA,gBAAA,KdHI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,YAIA,uCcPN,UdQQ,WAAA,McCN,gBAAA,gBAEE,MAAA,QAKF,mBACE,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QAEA,oBACE,cAAA,KACA,WAAA,IACA,OAAA,IAAA,MAAA,Y7BlBA,uBAAA,OACA,wBAAA,O6BoBA,0BAAA,0BAEE,aAAA,QAAA,QAAA,QAEA,UAAA,QAGF,6BACE,MAAA,QACA,iBAAA,YACA,aAAA,Y/BixHN,mC+B7wHE,2BAEE,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KAGF,yBAEE,WAAA,K7B5CA,uBAAA,EACA,wBAAA,E6BuDF,qBACE,WAAA,IACA,OAAA,E7BnEA,cAAA,O6BuEF,4B/BmwHF,2B+BjwHI,MAAA,KbxFF,iBAAA,QlB+1HF,oB+B5vHE,oBAEE,KAAA,EAAA,EAAA,KACA,WAAA,O/B+vHJ,yB+B1vHE,yBAEE,WAAA,EACA,UAAA,EACA,WAAA,OAMF,8B/BuvHF,mC+BtvHI,MAAA,KAUF,uBACE,QAAA,KAEF,qBACE,QAAA,MCxHJ,QACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,OACA,gBAAA,cACA,YAAA,MAEA,eAAA,MAOA,mBhCs2HF,yBAGA,sBADA,sBADA,sBAGA,sBACA,uBgC12HI,QAAA,KACA,UAAA,QACA,YAAA,OACA,gBAAA,cAoBJ,cACE,YAAA,SACA,eAAA,SACA,aAAA,K/B2OI,UAAA,Q+BzOJ,gBAAA,KACA,YAAA,OAaF,YACE,QAAA,KACA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KAEA,sBACE,cAAA,EACA,aAAA,EAGF,2BACE,SAAA,OASJ,aACE,YAAA,MACA,eAAA,MAYF,iBACE,WAAA,KACA,UAAA,EAGA,YAAA,OAIF,gBACE,QAAA,OAAA,O/B6KI,UAAA,Q+B3KJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,Y9BzGE,cAAA,OeHE,WAAA,WAAA,KAAA,YAIA,uCemGN,gBflGQ,WAAA,Me2GN,sBACE,gBAAA,KAGF,sBACE,gBAAA,KACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,kBAAA,UACA,oBAAA,OACA,gBAAA,KAGF,mBACE,WAAA,6BACA,WAAA,KvB1FE,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC+yHV,oCgC7yHQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCo2HV,oCgCl2HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCy5HV,oCgCv5HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC88HV,oCgC58HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,mBAEI,UAAA,OACA,gBAAA,WAEA,+BACE,eAAA,IAEA,8CACE,SAAA,SAGF,yCACE,cAAA,MACA,aAAA,MAIJ,sCACE,SAAA,QAGF,oCACE,QAAA,eACA,WAAA,KAGF,mCACE,QAAA,KAGF,qCACE,QAAA,KAGF,8BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCmgIV,qCgCjgIQ,kCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,mCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SA1DN,eAEI,UAAA,OACA,gBAAA,WAEA,2BACE,eAAA,IAEA,0CACE,SAAA,SAGF,qCACE,cAAA,MACA,aAAA,MAIJ,kCACE,SAAA,QAGF,gCACE,QAAA,eACA,WAAA,KAGF,+BACE,QAAA,KAGF,iCACE,QAAA,KAGF,0BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCujIV,iCgCrjIQ,8BAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,+BACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,QAcR,4BACE,MAAA,eAEA,kCAAA,kCAEE,MAAA,eAKF,oCACE,MAAA,gBAEA,0CAAA,0CAEE,MAAA,eAGF,6CACE,MAAA,ehCqiIR,2CgCjiII,0CAEE,MAAA,eAIJ,8BACE,MAAA,gBACA,aAAA,eAGF,mCACE,iBAAA,4OAGF,2BACE,MAAA,gBAEA,6BhC8hIJ,mCADA,mCgC1hIM,MAAA,eAOJ,2BACE,MAAA,KAEA,iCAAA,iCAEE,MAAA,KAKF,mCACE,MAAA,sBAEA,yCAAA,yCAEE,MAAA,sBAGF,4CACE,MAAA,sBhCqhIR,0CgCjhII,yCAEE,MAAA,KAIJ,6BACE,MAAA,sBACA,aAAA,qBAGF,kCACE,iBAAA,kPAGF,0BACE,MAAA,sBACA,4BhC+gIJ,kCADA,kCgC3gIM,MAAA,KCvUN,MACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,UAAA,EAEA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iB/BME,cAAA,O+BFF,SACE,aAAA,EACA,YAAA,EAGF,kBACE,WAAA,QACA,cAAA,QAEA,8BACE,iBAAA,E/BCF,uBAAA,mBACA,wBAAA,mB+BEA,6BACE,oBAAA,E/BUF,2BAAA,mBACA,0BAAA,mB+BJF,+BjCk1IF,+BiCh1II,WAAA,EAIJ,WAGE,KAAA,EAAA,EAAA,KACA,QAAA,KAAA,KAIF,YACE,cAAA,MAGF,eACE,WAAA,QACA,cAAA,EAGF,sBACE,cAAA,EAQA,sBACE,YAAA,KAQJ,aACE,QAAA,MAAA,KACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBAEA,yB/BpEE,cAAA,mBAAA,mBAAA,EAAA,E+ByEJ,aACE,QAAA,MAAA,KAEA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAEA,wB/B/EE,cAAA,EAAA,EAAA,mBAAA,mB+ByFJ,kBACE,aAAA,OACA,cAAA,OACA,YAAA,OACA,cAAA,EAUF,mBACE,aAAA,OACA,YAAA,OAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,K/BnHE,cAAA,mB+BuHJ,UjCozIA,iBADA,ciChzIE,MAAA,KAGF,UjCmzIA,cEv6II,uBAAA,mBACA,wBAAA,mB+BwHJ,UjCozIA,iBE/5II,2BAAA,mBACA,0BAAA,mB+BuHF,kBACE,cAAA,OxBpGA,yBwBgGJ,YAQI,QAAA,KACA,UAAA,IAAA,KAGA,kBAEE,KAAA,EAAA,EAAA,GACA,cAAA,EAEA,wBACE,YAAA,EACA,YAAA,EAKA,mC/BpJJ,wBAAA,EACA,2BAAA,EF+7IJ,gDiCzyIU,iDAGE,wBAAA,EjC0yIZ,gDiCxyIU,oDAGE,2BAAA,EAIJ,oC/BrJJ,uBAAA,EACA,0BAAA,EF67IJ,iDiCtyIU,kDAGE,uBAAA,EjCuyIZ,iDiCryIU,qDAGE,0BAAA,GC7MZ,kBACE,SAAA,SACA,QAAA,KACA,YAAA,OACA,MAAA,KACA,QAAA,KAAA,QjC4RI,UAAA,KiC1RJ,MAAA,QACA,WAAA,KACA,iBAAA,KACA,OAAA,EhCKE,cAAA,EgCHF,gBAAA,KjBAI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,cAAA,KAAA,KAIA,uCiBhBN,kBjBiBQ,WAAA,MiBFN,kCACE,MAAA,QACA,iBAAA,QACA,WAAA,MAAA,EAAA,KAAA,EAAA,iBAEA,yCACE,iBAAA,gRACA,UAAA,gBAKJ,yBACE,YAAA,EACA,MAAA,QACA,OAAA,QACA,YAAA,KACA,QAAA,GACA,iBAAA,gRACA,kBAAA,UACA,gBAAA,QjBvBE,WAAA,UAAA,IAAA,YAIA,uCiBWJ,yBjBVM,WAAA,MiBsBN,wBACE,QAAA,EAGF,wBACE,QAAA,EACA,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,kBACE,cAAA,EAGF,gBACE,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,8BhCnCE,uBAAA,OACA,wBAAA,OgCqCA,gDhCtCA,uBAAA,mBACA,wBAAA,mBgC0CF,oCACE,WAAA,EAIF,6BhClCE,2BAAA,OACA,0BAAA,OgCqCE,yDhCtCF,2BAAA,mBACA,0BAAA,mBgC0CA,iDhC3CA,2BAAA,OACA,0BAAA,OgCgDJ,gBACE,QAAA,KAAA,QASA,qCACE,aAAA,EAGF,iCACE,aAAA,EACA,YAAA,EhCxFA,cAAA,EgC2FA,6CAAgB,WAAA,EAChB,4CAAe,cAAA,EAEf,mDhC9FA,cAAA,EiCnBJ,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,KAEA,WAAA,KAOA,kCACE,aAAA,MAEA,0CACE,MAAA,KACA,cAAA,MACA,MAAA,QACA,QAAA,kCAIJ,wBACE,MAAA,QCzBJ,YACE,QAAA,KhCGA,aAAA,EACA,WAAA,KgCAF,WACE,SAAA,SACA,QAAA,MACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QnBKI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCmBfN,WnBgBQ,WAAA,MmBPN,iBACE,QAAA,EACA,MAAA,QAEA,iBAAA,QACA,aAAA,QAGF,iBACE,QAAA,EACA,MAAA,QACA,iBAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKF,wCACE,YAAA,KAGF,6BACE,QAAA,EACA,MAAA,KlBlCF,iBAAA,QkBoCE,aAAA,QAGF,+BACE,MAAA,QACA,eAAA,KACA,iBAAA,KACA,aAAA,QC3CF,WACE,QAAA,QAAA,OAOI,kCnCqCJ,uBAAA,OACA,0BAAA,OmChCI,iCnCiBJ,wBAAA,OACA,2BAAA,OmChCF,0BACE,QAAA,OAAA,OpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MmChCF,0BACE,QAAA,OAAA,MpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MoC/BJ,OACE,QAAA,aACA,QAAA,MAAA,MrC8RI,UAAA,MqC5RJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,eAAA,SpCKE,cAAA,OoCAF,aACE,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KCvBF,OACE,SAAA,SACA,QAAA,KAAA,KACA,cAAA,KACA,OAAA,IAAA,MAAA,YrCWE,cAAA,OqCNJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KAGA,8BACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,QAAA,KAeF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,iBClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,6BACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,cClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,0BACE,MAAA,QD6CF,aClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,yBACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QCHF,wCACE,GAAK,sBAAA,MADP,gCACE,GAAK,sBAAA,MAKT,UACE,QAAA,KACA,OAAA,KACA,SAAA,OxCwRI,UAAA,OwCtRJ,iBAAA,QvCIE,cAAA,OuCCJ,cACE,QAAA,KACA,eAAA,OACA,gBAAA,OACA,SAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QxBZI,WAAA,MAAA,IAAA,KAIA,uCwBAN,cxBCQ,WAAA,MwBWR,sBvBYE,iBAAA,iKuBVA,gBAAA,KAAA,KAIA,uBACE,kBAAA,GAAA,OAAA,SAAA,qBAAA,UAAA,GAAA,OAAA,SAAA,qBAGE,uCAJJ,uBAKM,kBAAA,KAAA,UAAA,MCvCR,YACE,QAAA,KACA,eAAA,OAGA,aAAA,EACA,cAAA,ExCSE,cAAA,OwCLJ,qBACE,gBAAA,KACA,cAAA,QAEA,gCAEE,QAAA,uBAAA,KACA,kBAAA,QAUJ,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QAGA,8BAAA,8BAEE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAGF,+BACE,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,KACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,6BxCrCE,uBAAA,QACA,wBAAA,QwCwCF,4BxC3BE,2BAAA,QACA,0BAAA,QwC8BF,0BAAA,0BAEE,MAAA,QACA,eAAA,KACA,iBAAA,KAIF,wBACE,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,kCACE,iBAAA,EAEA,yCACE,WAAA,KACA,iBAAA,IAcF,uBACE,eAAA,IAGE,oDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,mDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,+CACE,WAAA,EAGF,yDACE,iBAAA,IACA,kBAAA,EAEA,gEACE,YAAA,KACA,kBAAA,IjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,2BACE,eAAA,IAGE,wDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,uDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,mDACE,WAAA,EAGF,6DACE,iBAAA,IACA,kBAAA,EAEA,oEACE,YAAA,KACA,kBAAA,KAcZ,kBxC9HI,cAAA,EwCiIF,mCACE,aAAA,EAAA,EAAA,IAEA,8CACE,oBAAA,ECpJJ,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,2BACE,MAAA,QACA,iBAAA,QAGE,wDAAA,wDAEE,MAAA,QACA,iBAAA,QAGF,yDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,wBACE,MAAA,QACA,iBAAA,QAGE,qDAAA,qDAEE,MAAA,QACA,iBAAA,QAGF,sDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,uBACE,MAAA,QACA,iBAAA,QAGE,oDAAA,oDAEE,MAAA,QACA,iBAAA,QAGF,qDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QCbR,WACE,WAAA,YACA,MAAA,IACA,OAAA,IACA,QAAA,MAAA,MACA,MAAA,KACA,WAAA,YAAA,0TAAA,MAAA,CAAA,IAAA,KAAA,UACA,OAAA,E1COE,cAAA,O0CLF,QAAA,GAGA,iBACE,MAAA,KACA,gBAAA,KACA,QAAA,IAGF,iBACE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBACA,QAAA,EAGF,oBAAA,oBAEE,eAAA,KACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,QAAA,IAIJ,iBACE,OAAA,UAAA,gBAAA,iBCtCF,OACE,MAAA,MACA,UAAA,K5CmSI,UAAA,Q4ChSJ,eAAA,KACA,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,MAAA,KAAA,gB3CUE,cAAA,O2CPF,eACE,QAAA,EAGF,kBACE,QAAA,KAIJ,iBACE,MAAA,oBAAA,MAAA,iBAAA,MAAA,YACA,UAAA,KACA,eAAA,KAEA,mCACE,cAAA,OAIJ,cACE,QAAA,KACA,YAAA,OACA,QAAA,MAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gB3CVE,uBAAA,mBACA,wBAAA,mB2CYF,yBACE,aAAA,SACA,YAAA,OAIJ,YACE,QAAA,OACA,UAAA,WC1CF,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,WAAA,OACA,WAAA,KAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BlBI,WAAA,UAAA,IAAA,S6BoBF,UAAA,mB7BhBE,uC6BcJ,0B7BbM,WAAA,M6BiBN,0BACE,UAAA,KAIF,kCACE,UAAA,YAIJ,yBACE,OAAA,kBAEA,wCACE,WAAA,KACA,SAAA,OAGF,qCACE,WAAA,KAIJ,uBACE,QAAA,KACA,YAAA,OACA,WAAA,kBAIF,eACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e5C3DE,cAAA,M4C+DF,QAAA,EAIF,gBCpFE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,qBAAS,QAAA,EACT,qBAAS,QAAA,GDgFX,cACE,QAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,Q5CtEE,uBAAA,kBACA,wBAAA,kB4CwEF,yBACE,QAAA,MAAA,MACA,OAAA,OAAA,OAAA,OAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,KACA,UAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,SACA,QAAA,OACA,WAAA,IAAA,MAAA,Q5CzFE,2BAAA,kBACA,0BAAA,kB4C8FF,gBACE,OAAA,OrC3EA,yBqCkFF,cACE,UAAA,MACA,OAAA,QAAA,KAGF,yBACE,OAAA,oBAGF,uBACE,WAAA,oBAOF,UAAY,UAAA,OrCnGV,yBqCuGF,U9CywKF,U8CvwKI,UAAA,OrCzGA,0BqC8GF,UAAY,UAAA,QASV,kBACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,iCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,gC5C/KF,cAAA,E4CmLE,8BACE,WAAA,KAGF,gC5CvLF,cAAA,EOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,2BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,0CACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,yC5C/KF,cAAA,E4CmLE,uCACE,WAAA,KAGF,yC5CvLF,cAAA,G8ClBJ,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,Q+C1RJ,UAAA,WACA,QAAA,EAEA,cAAS,QAAA,GAET,wBACE,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAEA,gCACE,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,6CAAA,gBACE,QAAA,MAAA,EAEA,4DAAA,+BACE,OAAA,EAEA,oEAAA,uCACE,IAAA,KACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,+CAAA,gBACE,QAAA,EAAA,MAEA,8DAAA,+BACE,KAAA,EACA,MAAA,MACA,OAAA,MAEA,sEAAA,uCACE,MAAA,KACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,gDAAA,mBACE,QAAA,MAAA,EAEA,+DAAA,kCACE,IAAA,EAEA,uEAAA,0CACE,OAAA,KACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,8CAAA,kBACE,QAAA,EAAA,MAEA,6DAAA,iCACE,MAAA,EACA,MAAA,MACA,OAAA,MAEA,qEAAA,yCACE,KAAA,KACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,K9C7FE,cAAA,OgDnBJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,QiDzRJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,ehDIE,cAAA,MgDAF,wBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MAEA,+BAAA,gCAEE,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAMJ,4DAAA,+BACE,OAAA,mBAEA,oEAAA,uCACE,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBAGF,mEAAA,sCACE,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAMJ,8DAAA,+BACE,KAAA,mBACA,MAAA,MACA,OAAA,KAEA,sEAAA,uCACE,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAGF,qEAAA,sCACE,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAMJ,+DAAA,kCACE,IAAA,mBAEA,uEAAA,0CACE,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBAGF,sEAAA,yCACE,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAKJ,wEAAA,2CACE,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAKF,6DAAA,iCACE,MAAA,mBACA,MAAA,MACA,OAAA,KAEA,qEAAA,yCACE,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAGF,oEAAA,wCACE,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,gBACE,QAAA,MAAA,KACA,cAAA,EjDuJI,UAAA,KiDpJJ,iBAAA,QACA,cAAA,IAAA,MAAA,ehDtHE,uBAAA,kBACA,wBAAA,kBgDwHF,sBACE,QAAA,KAIJ,cACE,QAAA,KAAA,KACA,MAAA,QC/IF,UACE,SAAA,SAGF,wBACE,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCtBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDuBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OlClBI,WAAA,UAAA,IAAA,YAIA,uCkCQN,elCPQ,WAAA,MjBgzLR,oBACA,oBmDhyLA,sBAGE,QAAA,MnDmyLF,0BmD/xLA,8CAEE,UAAA,iBnDkyLF,4BmD/xLA,4CAEE,UAAA,kBAWA,8BACE,QAAA,EACA,oBAAA,QACA,UAAA,KnD0xLJ,uDACA,qDmDxxLE,qCAGE,QAAA,EACA,QAAA,EnDyxLJ,yCmDtxLE,2CAEE,QAAA,EACA,QAAA,ElC/DE,WAAA,QAAA,GAAA,IAIA,uCjBq1LN,yCmD7xLE,2ClCvDM,WAAA,MjB01LR,uBmDtxLA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,KACA,YAAA,OACA,gBAAA,OACA,MAAA,IACA,QAAA,EACA,MAAA,KACA,WAAA,OACA,WAAA,IACA,OAAA,EACA,QAAA,GlCzFI,WAAA,QAAA,KAAA,KAIA,uCjB82LN,uBmDzyLA,uBlCpEQ,WAAA,MjBm3LR,6BADA,6BmD1xLE,6BAAA,6BAEE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAGF,uBACE,MAAA,EnD8xLF,4BmDzxLA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,kBAAA,UACA,oBAAA,IACA,gBAAA,KAAA,KAWF,4BACE,iBAAA,wPAEF,4BACE,iBAAA,yPAQF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,KACA,gBAAA,OACA,QAAA,EAEA,aAAA,IACA,cAAA,KACA,YAAA,IACA,WAAA,KAEA,sCACE,WAAA,YACA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,QAAA,EACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,EAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GlC5KE,WAAA,QAAA,IAAA,KAIA,uCkCwJJ,sClCvJM,WAAA,MkC2KN,6BACE,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,QACA,KAAA,IACA,YAAA,QACA,eAAA,QACA,MAAA,KACA,WAAA,OnDoxLF,2CmD9wLE,2CAEE,OAAA,UAAA,eAGF,qDACE,iBAAA,KAGF,iCACE,MAAA,KE7NJ,kCACE,GAAK,UAAA,gBADP,0BACE,GAAK,UAAA,gBAIP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,KAAA,OAAA,SAAA,eAAA,UAAA,KAAA,OAAA,SAAA,eAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAQF,gCACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MANJ,wBACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MAKJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,KAAA,OAAA,SAAA,aAAA,UAAA,KAAA,OAAA,SAAA,aAGF,iBACE,MAAA,KACA,OAAA,KAIA,uCACE,gBrDo/LJ,cqDl/LM,2BAAA,KAAA,mBAAA,MCjEN,WACE,SAAA,MACA,OAAA,EACA,QAAA,KACA,QAAA,KACA,eAAA,OACA,UAAA,KAEA,WAAA,OACA,iBAAA,KACA,gBAAA,YACA,QAAA,ErCKI,WAAA,UAAA,IAAA,YAIA,uCqCpBN,WrCqBQ,WAAA,MqCLR,oBPdE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,yBAAS,QAAA,EACT,yBAAS,QAAA,GOQX,kBACE,QAAA,KACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KAEA,6BACE,QAAA,MAAA,MACA,WAAA,OACA,aAAA,OACA,cAAA,OAIJ,iBACE,cAAA,EACA,YAAA,IAGF,gBACE,UAAA,EACA,QAAA,KAAA,KACA,WAAA,KAGF,iBACE,IAAA,EACA,KAAA,EACA,MAAA,MACA,aAAA,IAAA,MAAA,eACA,UAAA,kBAGF,eACE,IAAA,EACA,MAAA,EACA,MAAA,MACA,YAAA,IAAA,MAAA,eACA,UAAA,iBAGF,eACE,IAAA,EACA,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,cAAA,IAAA,MAAA,eACA,UAAA,kBAGF,kBACE,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,WAAA,IAAA,MAAA,eACA,UAAA,iBAGF,gBACE,UAAA,KCjFF,aACE,QAAA,aACA,WAAA,IACA,eAAA,OACA,OAAA,KACA,iBAAA,aACA,QAAA,GAEA,yBACE,QAAA,aACA,QAAA,GAKJ,gBACE,WAAA,KAGF,gBACE,WAAA,KAGF,gBACE,WAAA,MAKA,+BACE,kBAAA,iBAAA,GAAA,YAAA,SAAA,UAAA,iBAAA,GAAA,YAAA,SAIJ,oCACE,IACE,QAAA,IAFJ,4BACE,IACE,QAAA,IAIJ,kBACE,mBAAA,8DAAA,WAAA,8DACA,kBAAA,KAAA,KAAA,UAAA,KAAA,KACA,kBAAA,iBAAA,GAAA,OAAA,SAAA,UAAA,iBAAA,GAAA,OAAA,SAGF,oCACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IAFJ,4BACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IH9CF,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GIJF,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,gBACE,MAAA,QAGE,sBAAA,sBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,aACE,MAAA,QAGE,mBAAA,mBAEE,MAAA,QANN,YACE,MAAA,QAGE,kBAAA,kBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QCLR,OACE,SAAA,SACA,MAAA,KAEA,eACE,QAAA,MACA,YAAA,uBACA,QAAA,GAGF,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KAKF,WACE,kBAAA,KADF,WACE,kBAAA,mBADF,YACE,kBAAA,oBADF,YACE,kBAAA,oBCrBJ,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAQE,YACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,KjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,gBACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCzBN,QACE,QAAA,KACA,eAAA,IACA,YAAA,OACA,WAAA,QAGF,QACE,QAAA,KACA,KAAA,EAAA,EAAA,KACA,eAAA,OACA,WAAA,QCRF,iB5Dk4MA,0D6D93ME,SAAA,mBACA,MAAA,cACA,OAAA,cACA,QAAA,YACA,OAAA,eACA,SAAA,iBACA,KAAA,wBACA,YAAA,iBACA,OAAA,YCXA,uBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,GCRJ,eCAE,SAAA,OACA,cAAA,SACA,YAAA,OCNF,IACE,QAAA,aACA,WAAA,QACA,MAAA,IACA,WAAA,IACA,iBAAA,aACA,QAAA,ICyDM,gBAOI,eAAA,mBAPJ,WAOI,eAAA,cAPJ,cAOI,eAAA,iBAPJ,cAOI,eAAA,iBAPJ,mBAOI,eAAA,sBAPJ,gBAOI,eAAA,mBAPJ,aAOI,MAAA,eAPJ,WAOI,MAAA,gBAPJ,YAOI,MAAA,eAPJ,WAOI,QAAA,YAPJ,YAOI,QAAA,cAPJ,YAOI,QAAA,aAPJ,YAOI,QAAA,cAPJ,aAOI,QAAA,YAPJ,eAOI,SAAA,eAPJ,iBAOI,SAAA,iBAPJ,kBAOI,SAAA,kBAPJ,iBAOI,SAAA,iBAPJ,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,QAOI,WAAA,EAAA,MAAA,KAAA,0BAPJ,WAOI,WAAA,EAAA,QAAA,OAAA,2BAPJ,WAOI,WAAA,EAAA,KAAA,KAAA,2BAPJ,aAOI,WAAA,eAPJ,iBAOI,SAAA,iBAPJ,mBAOI,SAAA,mBAPJ,mBAOI,SAAA,mBAPJ,gBAOI,SAAA,gBAPJ,iBAOI,SAAA,yBAAA,SAAA,iBAPJ,OAOI,IAAA,YAPJ,QAOI,IAAA,cAPJ,SAOI,IAAA,eAPJ,UAOI,OAAA,YAPJ,WAOI,OAAA,cAPJ,YAOI,OAAA,eAPJ,SAOI,KAAA,YAPJ,UAOI,KAAA,cAPJ,WAOI,KAAA,eAPJ,OAOI,MAAA,YAPJ,QAOI,MAAA,cAPJ,SAOI,MAAA,eAPJ,kBAOI,UAAA,+BAPJ,oBAOI,UAAA,2BAPJ,oBAOI,UAAA,2BAPJ,QAOI,OAAA,IAAA,MAAA,kBAPJ,UAOI,OAAA,YAPJ,YAOI,WAAA,IAAA,MAAA,kBAPJ,cAOI,WAAA,YAPJ,YAOI,aAAA,IAAA,MAAA,kBAPJ,cAOI,aAAA,YAPJ,eAOI,cAAA,IAAA,MAAA,kBAPJ,iBAOI,cAAA,YAPJ,cAOI,YAAA,IAAA,MAAA,kBAPJ,gBAOI,YAAA,YAPJ,gBAOI,aAAA,kBAPJ,kBAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,eAOI,aAAA,kBAPJ,cAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,cAOI,aAAA,eAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,OAOI,MAAA,eAPJ,QAOI,MAAA,eAPJ,QAOI,UAAA,eAPJ,QAOI,MAAA,gBAPJ,YAOI,UAAA,gBAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,OAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,QAOI,WAAA,eAPJ,QAOI,OAAA,gBAPJ,YAOI,WAAA,gBAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,OAOI,IAAA,YAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,gBAPJ,OAOI,IAAA,eAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,eAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,gBAOI,YAAA,mCAPJ,MAOI,UAAA,iCAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,8BAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,eAPJ,YAOI,WAAA,iBAPJ,YAOI,WAAA,iBAPJ,UAOI,YAAA,cAPJ,YAOI,YAAA,kBAPJ,WAOI,YAAA,cAPJ,SAOI,YAAA,cAPJ,WAOI,YAAA,iBAPJ,MAOI,YAAA,YAPJ,OAOI,YAAA,eAPJ,SAOI,YAAA,cAPJ,OAOI,YAAA,YAPJ,YAOI,WAAA,eAPJ,UAOI,WAAA,gBAPJ,aAOI,WAAA,iBAPJ,sBAOI,gBAAA,eAPJ,2BAOI,gBAAA,oBAPJ,8BAOI,gBAAA,uBAPJ,gBAOI,eAAA,oBAPJ,gBAOI,eAAA,oBAPJ,iBAOI,eAAA,qBAPJ,WAOI,YAAA,iBAPJ,aAOI,YAAA,iBAPJ,YAOI,UAAA,qBAAA,WAAA,qBAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,gBAIQ,kBAAA,EAGJ,MAAA,+DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,aAIQ,kBAAA,EAGJ,MAAA,4DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAPJ,eAIQ,kBAAA,EAGJ,MAAA,yBAPJ,eAIQ,kBAAA,EAGJ,MAAA,+BAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAjBJ,iBACE,kBAAA,KADF,iBACE,kBAAA,IADF,iBACE,kBAAA,KADF,kBACE,kBAAA,EASF,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,cAIQ,gBAAA,EAGJ,iBAAA,6DAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,WAIQ,gBAAA,EAGJ,iBAAA,0DAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,gBAIQ,gBAAA,EAGJ,iBAAA,sBAjBJ,eACE,gBAAA,IADF,eACE,gBAAA,KADF,eACE,gBAAA,IADF,eACE,gBAAA,KADF,gBACE,gBAAA,EASF,aAOI,iBAAA,6BAPJ,iBAOI,oBAAA,cAAA,iBAAA,cAAA,YAAA,cAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,iBAPJ,WAOI,cAAA,YAPJ,WAOI,cAAA,gBAPJ,WAOI,cAAA,iBAPJ,WAOI,cAAA,gBAPJ,gBAOI,cAAA,cAPJ,cAOI,cAAA,gBAPJ,aAOI,uBAAA,iBAAA,wBAAA,iBAPJ,aAOI,wBAAA,iBAAA,2BAAA,iBAPJ,gBAOI,2BAAA,iBAAA,0BAAA,iBAPJ,eAOI,0BAAA,iBAAA,uBAAA,iBAPJ,SAOI,WAAA,kBAPJ,WAOI,WAAA,iBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,iBAOI,MAAA,eAPJ,eAOI,MAAA,gBAPJ,gBAOI,MAAA,eAPJ,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,WAOI,IAAA,YAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,gBAPJ,WAOI,IAAA,eAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,eAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,gBAOI,WAAA,eAPJ,cAOI,WAAA,gBAPJ,iBAOI,WAAA,kBCnDZ,0BD4CQ,MAOI,UAAA,iBAPJ,MAOI,UAAA,eAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,kBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `<td>` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`<button>` buttons\n//\n// Details at https://github.com/twbs/bootstrap/pull/30562\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n // Remove the inheritance of word-wrap in Safari.\n // See https://github.com/twbs/bootstrap/issues/24990\n word-wrap: normal;\n\n // Undo the opacity change from Chrome\n &:disabled {\n opacity: 1;\n }\n}\n\n// Remove the dropdown arrow in Chrome from inputs built with datalists.\n// See https://stackoverflow.com/a/54997118\n\n[list]::-webkit-calendar-picker-indicator {\n display: none;\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\n// 3. Opinionated: add \"hand\" cursor to non-disabled button elements.\n\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n\n @if $enable-button-pointers {\n &:not(:disabled) {\n cursor: pointer; // 3\n }\n }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\n// 1. Textareas should really only resize vertically so they don't break their (horizontal) containers.\n\ntextarea {\n resize: vertical; // 1\n}\n\n// 1. Browsers set a default `min-width: min-content;` on fieldsets,\n// unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n// So we reset that to ensure fieldsets behave more like a standard block element.\n// See https://github.com/twbs/bootstrap/issues/12359\n// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n// 2. Reset the default outline behavior of fieldsets so they don't affect page layout.\n\nfieldset {\n min-width: 0; // 1\n padding: 0; // 2\n margin: 0; // 2\n border: 0; // 2\n}\n\n// 1. By using `float: left`, the legend will behave like a block element.\n// This way the border of a fieldset wraps around the legend if present.\n// 2. Fix wrapping bug.\n// See https://github.com/twbs/bootstrap/issues/29712\n\nlegend {\n float: left; // 1\n width: 100%;\n padding: 0;\n margin-bottom: $legend-margin-bottom;\n @include font-size($legend-font-size);\n font-weight: $legend-font-weight;\n line-height: inherit;\n\n + * {\n clear: left; // 2\n }\n}\n\n// Fix height of inputs with a type of datetime-local, date, month, week, or time\n// See https://github.com/twbs/bootstrap/issues/18842\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n// 1. Correct the outline style in Safari.\n// 2. This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\n[type=\"search\"] {\n outline-offset: -2px; // 1\n -webkit-appearance: textfield; // 2\n}\n\n// 1. A few input types should stay LTR\n// See https://rtlstyling.com/posts/rtl-styling#form-inputs\n// 2. RTL only output\n// See https://rtlcss.com/learn/usage-guide/control-directives/#raw\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n\n// Remove the inner padding in Chrome and Safari on macOS.\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n// Remove padding around color pickers in webkit browsers\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n\n// Inherit font family and line height for file input buttons\n\n::file-selector-button {\n font: inherit;\n}\n\n// 1. Change font properties to `inherit`\n// 2. Correct the inability to style clickable types in iOS and Safari.\n\n::-webkit-file-upload-button {\n font: inherit; // 1\n -webkit-appearance: button; // 2\n}\n\n// Correct element displays\n\noutput {\n display: inline-block;\n}\n\n// Remove border from iframe\n\niframe {\n border: 0;\n}\n\n// Summary\n//\n// 1. Add the correct display in all browsers\n\nsummary {\n display: list-item; // 1\n cursor: pointer;\n}\n\n\n// Progress\n//\n// Add the correct vertical alignment in Chrome, Firefox, and Opera.\n\nprogress {\n vertical-align: baseline;\n}\n\n\n// Hidden attribute\n//\n// Always hide an element with the `hidden` HTML attribute.\n\n[hidden] {\n display: none !important;\n}\n","@charset \"UTF-8\";\n/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-rgb: 33, 37, 41;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n background-color: currentColor;\n border: 0;\n opacity: 0.25;\n}\n\nhr:not([size]) {\n height: 1px;\n}\n\nh6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n}\n\nh1, .h1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.5rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.75rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.5rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-bs-original-title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall, .small {\n font-size: 0.875em;\n}\n\nmark, .mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: #0d6efd;\n text-decoration: underline;\n}\na:hover {\n color: #0a58ca;\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n direction: ltr /* rtl:ignore */;\n unicode-bidi: bidi-override;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: #d63384;\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 0.875em;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n font-weight: 700;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: #6c757d;\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]::-webkit-calendar-picker-indicator {\n display: none;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: calc(1.625rem + 4.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 5rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.575rem + 3.9vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 4.5rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.525rem + 3.3vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 4rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.475rem + 2.7vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 3.5rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.425rem + 2.1vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 3rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.375rem + 1.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 2.5rem;\n }\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 0.875em;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n.blockquote-footer::before {\n content: \"— \";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 0.875em;\n color: #6c757d;\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n width: 100%;\n padding-right: var(--bs-gutter-x, 0.75rem);\n padding-left: var(--bs-gutter-x, 0.75rem);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-right: calc(var(--bs-gutter-x) * -.5);\n margin-left: calc(var(--bs-gutter-x) * -.5);\n}\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * .5);\n padding-left: calc(var(--bs-gutter-x) * .5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-sm-0 {\n margin-left: 0;\n }\n\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-sm-3 {\n margin-left: 25%;\n }\n\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-sm-6 {\n margin-left: 50%;\n }\n\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-sm-9 {\n margin-left: 75%;\n }\n\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-md-0 {\n margin-left: 0;\n }\n\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-md-3 {\n margin-left: 25%;\n }\n\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-md-6 {\n margin-left: 50%;\n }\n\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-md-9 {\n margin-left: 75%;\n }\n\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-lg-0 {\n margin-left: 0;\n }\n\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-lg-3 {\n margin-left: 25%;\n }\n\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-lg-6 {\n margin-left: 50%;\n }\n\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-lg-9 {\n margin-left: 75%;\n }\n\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xl-0 {\n margin-left: 0;\n }\n\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xl-3 {\n margin-left: 25%;\n }\n\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xl-6 {\n margin-left: 50%;\n }\n\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xl-9 {\n margin-left: 75%;\n }\n\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xxl-0 {\n margin-left: 0;\n }\n\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xxl-3 {\n margin-left: 25%;\n }\n\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xxl-6 {\n margin-left: 50%;\n }\n\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xxl-9 {\n margin-left: 75%;\n }\n\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.table {\n --bs-table-bg: transparent;\n --bs-table-accent-bg: transparent;\n --bs-table-striped-color: #212529;\n --bs-table-striped-bg: rgba(0, 0, 0, 0.05);\n --bs-table-active-color: #212529;\n --bs-table-active-bg: rgba(0, 0, 0, 0.1);\n --bs-table-hover-color: #212529;\n --bs-table-hover-bg: rgba(0, 0, 0, 0.075);\n width: 100%;\n margin-bottom: 1rem;\n color: #212529;\n vertical-align: top;\n border-color: #dee2e6;\n}\n.table > :not(caption) > * > * {\n padding: 0.5rem 0.5rem;\n background-color: var(--bs-table-bg);\n border-bottom-width: 1px;\n box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);\n}\n.table > tbody {\n vertical-align: inherit;\n}\n.table > thead {\n vertical-align: bottom;\n}\n.table > :not(:last-child) > :last-child > * {\n border-bottom-color: currentColor;\n}\n\n.caption-top {\n caption-side: top;\n}\n\n.table-sm > :not(caption) > * > * {\n padding: 0.25rem 0.25rem;\n}\n\n.table-bordered > :not(caption) > * {\n border-width: 1px 0;\n}\n.table-bordered > :not(caption) > * > * {\n border-width: 0 1px;\n}\n\n.table-borderless > :not(caption) > * > * {\n border-bottom-width: 0;\n}\n\n.table-striped > tbody > tr:nth-of-type(odd) {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-active {\n --bs-table-accent-bg: var(--bs-table-active-bg);\n color: var(--bs-table-active-color);\n}\n\n.table-hover > tbody > tr:hover {\n --bs-table-accent-bg: var(--bs-table-hover-bg);\n color: var(--bs-table-hover-color);\n}\n\n.table-primary {\n --bs-table-bg: #cfe2ff;\n --bs-table-striped-bg: #c5d7f2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bacbe6;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfd1ec;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #bacbe6;\n}\n\n.table-secondary {\n --bs-table-bg: #e2e3e5;\n --bs-table-striped-bg: #d7d8da;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #cbccce;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #d1d2d4;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #cbccce;\n}\n\n.table-success {\n --bs-table-bg: #d1e7dd;\n --bs-table-striped-bg: #c7dbd2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bcd0c7;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #c1d6cc;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #bcd0c7;\n}\n\n.table-info {\n --bs-table-bg: #cff4fc;\n --bs-table-striped-bg: #c5e8ef;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #badce3;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfe2e9;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #badce3;\n}\n\n.table-warning {\n --bs-table-bg: #fff3cd;\n --bs-table-striped-bg: #f2e7c3;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #e6dbb9;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #ece1be;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #e6dbb9;\n}\n\n.table-danger {\n --bs-table-bg: #f8d7da;\n --bs-table-striped-bg: #eccccf;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfc2c4;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5c7ca;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #dfc2c4;\n}\n\n.table-light {\n --bs-table-bg: #f8f9fa;\n --bs-table-striped-bg: #ecedee;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfe0e1;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5e6e7;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #dfe0e1;\n}\n\n.table-dark {\n --bs-table-bg: #212529;\n --bs-table-striped-bg: #2c3034;\n --bs-table-striped-color: #fff;\n --bs-table-active-bg: #373b3e;\n --bs-table-active-color: #fff;\n --bs-table-hover-bg: #323539;\n --bs-table-hover-color: #fff;\n color: #fff;\n border-color: #373b3e;\n}\n\n.table-responsive {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 767.98px) {\n .table-responsive-md {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1399.98px) {\n .table-responsive-xxl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n.form-label {\n margin-bottom: 0.5rem;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n}\n\n.form-text {\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n.form-control[type=file] {\n overflow: hidden;\n}\n.form-control[type=file]:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n.form-control:focus {\n color: #212529;\n background-color: #fff;\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-control::-webkit-date-and-time-value {\n height: 1.5em;\n}\n.form-control::-moz-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n.form-control::file-selector-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n margin-inline-end: 0.75rem;\n color: #212529;\n background-color: #e9ecef;\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: 1px;\n border-radius: 0;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control::file-selector-button {\n transition: none;\n }\n}\n.form-control:hover:not(:disabled):not([readonly])::file-selector-button {\n background-color: #dde0e3;\n}\n.form-control::-webkit-file-upload-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n margin-inline-end: 0.75rem;\n color: #212529;\n background-color: #e9ecef;\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: 1px;\n border-radius: 0;\n -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control::-webkit-file-upload-button {\n -webkit-transition: none;\n transition: none;\n }\n}\n.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {\n background-color: #dde0e3;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding: 0.375rem 0;\n margin-bottom: 0;\n line-height: 1.5;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm {\n min-height: calc(1.5em + 0.5rem + 2px);\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.2rem;\n}\n.form-control-sm::file-selector-button {\n padding: 0.25rem 0.5rem;\n margin: -0.25rem -0.5rem;\n -webkit-margin-end: 0.5rem;\n margin-inline-end: 0.5rem;\n}\n.form-control-sm::-webkit-file-upload-button {\n padding: 0.25rem 0.5rem;\n margin: -0.25rem -0.5rem;\n -webkit-margin-end: 0.5rem;\n margin-inline-end: 0.5rem;\n}\n\n.form-control-lg {\n min-height: calc(1.5em + 1rem + 2px);\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n border-radius: 0.3rem;\n}\n.form-control-lg::file-selector-button {\n padding: 0.5rem 1rem;\n margin: -0.5rem -1rem;\n -webkit-margin-end: 1rem;\n margin-inline-end: 1rem;\n}\n.form-control-lg::-webkit-file-upload-button {\n padding: 0.5rem 1rem;\n margin: -0.5rem -1rem;\n -webkit-margin-end: 1rem;\n margin-inline-end: 1rem;\n}\n\ntextarea.form-control {\n min-height: calc(1.5em + 0.75rem + 2px);\n}\ntextarea.form-control-sm {\n min-height: calc(1.5em + 0.5rem + 2px);\n}\ntextarea.form-control-lg {\n min-height: calc(1.5em + 1rem + 2px);\n}\n\n.form-control-color {\n width: 3rem;\n height: auto;\n padding: 0.375rem;\n}\n.form-control-color:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n.form-control-color::-moz-color-swatch {\n height: 1.5em;\n border-radius: 0.25rem;\n}\n.form-control-color::-webkit-color-swatch {\n height: 1.5em;\n border-radius: 0.25rem;\n}\n\n.form-select {\n display: block;\n width: 100%;\n padding: 0.375rem 2.25rem 0.375rem 0.75rem;\n -moz-padding-start: calc(0.75rem - 3px);\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n background-color: #fff;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right 0.75rem center;\n background-size: 16px 12px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-select {\n transition: none;\n }\n}\n.form-select:focus {\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-select[multiple], .form-select[size]:not([size=\"1\"]) {\n padding-right: 0.75rem;\n background-image: none;\n}\n.form-select:disabled {\n background-color: #e9ecef;\n}\n.form-select:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 #212529;\n}\n\n.form-select-sm {\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n padding-left: 0.5rem;\n font-size: 0.875rem;\n}\n\n.form-select-lg {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n padding-left: 1rem;\n font-size: 1.25rem;\n}\n\n.form-check {\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5em;\n margin-bottom: 0.125rem;\n}\n.form-check .form-check-input {\n float: left;\n margin-left: -1.5em;\n}\n\n.form-check-input {\n width: 1em;\n height: 1em;\n margin-top: 0.25em;\n vertical-align: top;\n background-color: #fff;\n background-repeat: no-repeat;\n background-position: center;\n background-size: contain;\n border: 1px solid rgba(0, 0, 0, 0.25);\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n -webkit-print-color-adjust: exact;\n color-adjust: exact;\n}\n.form-check-input[type=checkbox] {\n border-radius: 0.25em;\n}\n.form-check-input[type=radio] {\n border-radius: 50%;\n}\n.form-check-input:active {\n filter: brightness(90%);\n}\n.form-check-input:focus {\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-check-input:checked {\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.form-check-input:checked[type=checkbox] {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\");\n}\n.form-check-input:checked[type=radio] {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\");\n}\n.form-check-input[type=checkbox]:indeterminate {\n background-color: #0d6efd;\n border-color: #0d6efd;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\");\n}\n.form-check-input:disabled {\n pointer-events: none;\n filter: none;\n opacity: 0.5;\n}\n.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {\n opacity: 0.5;\n}\n\n.form-switch {\n padding-left: 2.5em;\n}\n.form-switch .form-check-input {\n width: 2em;\n margin-left: -2.5em;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");\n background-position: left center;\n border-radius: 2em;\n transition: background-position 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-switch .form-check-input {\n transition: none;\n }\n}\n.form-switch .form-check-input:focus {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\");\n}\n.form-switch .form-check-input:checked {\n background-position: right center;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\");\n}\n\n.form-check-inline {\n display: inline-block;\n margin-right: 1rem;\n}\n\n.btn-check {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.btn-check[disabled] + .btn, .btn-check:disabled + .btn {\n pointer-events: none;\n filter: none;\n opacity: 0.65;\n}\n\n.form-range {\n width: 100%;\n height: 1.5rem;\n padding: 0;\n background-color: transparent;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n.form-range:focus {\n outline: 0;\n}\n.form-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-range::-moz-focus-outer {\n border: 0;\n}\n.form-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #0d6efd;\n border: 0;\n border-radius: 1rem;\n -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -webkit-appearance: none;\n appearance: none;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-range::-webkit-slider-thumb {\n -webkit-transition: none;\n transition: none;\n }\n}\n.form-range::-webkit-slider-thumb:active {\n background-color: #b6d4fe;\n}\n.form-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n.form-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #0d6efd;\n border: 0;\n border-radius: 1rem;\n -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -moz-appearance: none;\n appearance: none;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-range::-moz-range-thumb {\n -moz-transition: none;\n transition: none;\n }\n}\n.form-range::-moz-range-thumb:active {\n background-color: #b6d4fe;\n}\n.form-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n.form-range:disabled {\n pointer-events: none;\n}\n.form-range:disabled::-webkit-slider-thumb {\n background-color: #adb5bd;\n}\n.form-range:disabled::-moz-range-thumb {\n background-color: #adb5bd;\n}\n\n.form-floating {\n position: relative;\n}\n.form-floating > .form-control,\n.form-floating > .form-select {\n height: calc(3.5rem + 2px);\n line-height: 1.25;\n}\n.form-floating > label {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n padding: 1rem 0.75rem;\n pointer-events: none;\n border: 1px solid transparent;\n transform-origin: 0 0;\n transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-floating > label {\n transition: none;\n }\n}\n.form-floating > .form-control {\n padding: 1rem 0.75rem;\n}\n.form-floating > .form-control::-moz-placeholder {\n color: transparent;\n}\n.form-floating > .form-control::placeholder {\n color: transparent;\n}\n.form-floating > .form-control:not(:-moz-placeholder-shown) {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-control:-webkit-autofill {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-select {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n.form-floating > .form-control:focus ~ label,\n.form-floating > .form-control:not(:placeholder-shown) ~ label,\n.form-floating > .form-select ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n.form-floating > .form-control:-webkit-autofill ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n.input-group > .form-control,\n.input-group > .form-select {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n min-width: 0;\n}\n.input-group > .form-control:focus,\n.input-group > .form-select:focus {\n z-index: 3;\n}\n.input-group .btn {\n position: relative;\n z-index: 2;\n}\n.input-group .btn:focus {\n z-index: 3;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-lg > .form-control,\n.input-group-lg > .form-select,\n.input-group-lg > .input-group-text,\n.input-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n border-radius: 0.3rem;\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .form-select,\n.input-group-sm > .input-group-text,\n.input-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.2rem;\n}\n\n.input-group-lg > .form-select,\n.input-group-sm > .form-select {\n padding-right: 3rem;\n}\n\n.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),\n.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),\n.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {\n margin-left: -1px;\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: #198754;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: 0.1rem;\n font-size: 0.875rem;\n color: #fff;\n background-color: rgba(25, 135, 84, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated :valid ~ .valid-feedback,\n.was-validated :valid ~ .valid-tooltip,\n.is-valid ~ .valid-feedback,\n.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid {\n border-color: #198754;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus {\n border-color: #198754;\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);\n}\n\n.was-validated textarea.form-control:valid, textarea.form-control.is-valid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .form-select:valid, .form-select.is-valid {\n border-color: #198754;\n}\n.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size=\"1\"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size=\"1\"] {\n padding-right: 4.125rem;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"), url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-position: right 0.75rem center, center right 2.25rem;\n background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-select:valid:focus, .form-select.is-valid:focus {\n border-color: #198754;\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);\n}\n\n.was-validated .form-check-input:valid, .form-check-input.is-valid {\n border-color: #198754;\n}\n.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {\n background-color: #198754;\n}\n.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);\n}\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #198754;\n}\n\n.form-check-inline .form-check-input ~ .valid-feedback {\n margin-left: 0.5em;\n}\n\n.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,\n.was-validated .input-group .form-select:valid,\n.input-group .form-select.is-valid {\n z-index: 1;\n}\n.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,\n.was-validated .input-group .form-select:valid:focus,\n.input-group .form-select.is-valid:focus {\n z-index: 3;\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: 0.1rem;\n font-size: 0.875rem;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated :invalid ~ .invalid-feedback,\n.was-validated :invalid ~ .invalid-tooltip,\n.is-invalid ~ .invalid-feedback,\n.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid {\n border-color: #dc3545;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .form-select:invalid, .form-select.is-invalid {\n border-color: #dc3545;\n}\n.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size=\"1\"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size=\"1\"] {\n padding-right: 4.125rem;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"), url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");\n background-position: right 0.75rem center, center right 2.25rem;\n background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-check-input:invalid, .form-check-input.is-invalid {\n border-color: #dc3545;\n}\n.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {\n background-color: #dc3545;\n}\n.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);\n}\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.form-check-inline .form-check-input ~ .invalid-feedback {\n margin-left: 0.5em;\n}\n\n.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,\n.was-validated .input-group .form-select:invalid,\n.input-group .form-select.is-invalid {\n z-index: 2;\n}\n.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,\n.was-validated .input-group .form-select:invalid:focus,\n.input-group .form-select.is-invalid:focus {\n z-index: 3;\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: center;\n text-decoration: none;\n vertical-align: middle;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n background-color: transparent;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .btn {\n transition: none;\n }\n}\n.btn:hover {\n color: #212529;\n}\n.btn-check:focus + .btn, .btn:focus {\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.btn:disabled, .btn.disabled, fieldset:disabled .btn {\n pointer-events: none;\n opacity: 0.65;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #0b5ed7;\n border-color: #0a58ca;\n}\n.btn-check:focus + .btn-primary, .btn-primary:focus {\n color: #fff;\n background-color: #0b5ed7;\n border-color: #0a58ca;\n box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);\n}\n.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0a58ca;\n border-color: #0a53be;\n}\n.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);\n}\n.btn-primary:disabled, .btn-primary.disabled {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n.btn-secondary:hover {\n color: #fff;\n background-color: #5c636a;\n border-color: #565e64;\n}\n.btn-check:focus + .btn-secondary, .btn-secondary:focus {\n color: #fff;\n background-color: #5c636a;\n border-color: #565e64;\n box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);\n}\n.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #565e64;\n border-color: #51585e;\n}\n.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);\n}\n.btn-secondary:disabled, .btn-secondary.disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-success {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #157347;\n border-color: #146c43;\n}\n.btn-check:focus + .btn-success, .btn-success:focus {\n color: #fff;\n background-color: #157347;\n border-color: #146c43;\n box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);\n}\n.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #146c43;\n border-color: #13653f;\n}\n.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);\n}\n.btn-success:disabled, .btn-success.disabled {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n\n.btn-info {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-info:hover {\n color: #000;\n background-color: #31d2f2;\n border-color: #25cff2;\n}\n.btn-check:focus + .btn-info, .btn-info:focus {\n color: #000;\n background-color: #31d2f2;\n border-color: #25cff2;\n box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);\n}\n.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {\n color: #000;\n background-color: #3dd5f3;\n border-color: #25cff2;\n}\n.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);\n}\n.btn-info:disabled, .btn-info.disabled {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n\n.btn-warning {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n.btn-warning:hover {\n color: #000;\n background-color: #ffca2c;\n border-color: #ffc720;\n}\n.btn-check:focus + .btn-warning, .btn-warning:focus {\n color: #000;\n background-color: #ffca2c;\n border-color: #ffc720;\n box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);\n}\n.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {\n color: #000;\n background-color: #ffcd39;\n border-color: #ffc720;\n}\n.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);\n}\n.btn-warning:disabled, .btn-warning.disabled {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #bb2d3b;\n border-color: #b02a37;\n}\n.btn-check:focus + .btn-danger, .btn-danger:focus {\n color: #fff;\n background-color: #bb2d3b;\n border-color: #b02a37;\n box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);\n}\n.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #b02a37;\n border-color: #a52834;\n}\n.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);\n}\n.btn-danger:disabled, .btn-danger.disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-light {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-light:hover {\n color: #000;\n background-color: #f9fafb;\n border-color: #f9fafb;\n}\n.btn-check:focus + .btn-light, .btn-light:focus {\n color: #000;\n background-color: #f9fafb;\n border-color: #f9fafb;\n box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);\n}\n.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {\n color: #000;\n background-color: #f9fafb;\n border-color: #f9fafb;\n}\n.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);\n}\n.btn-light:disabled, .btn-light.disabled {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-dark {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n.btn-dark:hover {\n color: #fff;\n background-color: #1c1f23;\n border-color: #1a1e21;\n}\n.btn-check:focus + .btn-dark, .btn-dark:focus {\n color: #fff;\n background-color: #1c1f23;\n border-color: #1a1e21;\n box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);\n}\n.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1a1e21;\n border-color: #191c1f;\n}\n.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);\n}\n.btn-dark:disabled, .btn-dark.disabled {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n\n.btn-outline-primary {\n color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);\n}\n.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);\n}\n.btn-outline-primary:disabled, .btn-outline-primary.disabled {\n color: #0d6efd;\n background-color: transparent;\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n border-color: #6c757d;\n}\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {\n box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);\n}\n.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);\n}\n.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-success {\n color: #198754;\n border-color: #198754;\n}\n.btn-outline-success:hover {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);\n}\n.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);\n}\n.btn-outline-success:disabled, .btn-outline-success.disabled {\n color: #198754;\n background-color: transparent;\n}\n\n.btn-outline-info {\n color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-outline-info:hover {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);\n}\n.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);\n}\n.btn-outline-info:disabled, .btn-outline-info.disabled {\n color: #0dcaf0;\n background-color: transparent;\n}\n\n.btn-outline-warning {\n color: #ffc107;\n border-color: #ffc107;\n}\n.btn-outline-warning:hover {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {\n box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);\n}\n.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);\n}\n.btn-outline-warning:disabled, .btn-outline-warning.disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-danger {\n color: #dc3545;\n border-color: #dc3545;\n}\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);\n}\n.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);\n}\n.btn-outline-danger:disabled, .btn-outline-danger.disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-outline-light:hover {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {\n box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);\n}\n.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);\n}\n.btn-outline-light:disabled, .btn-outline-light.disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-dark {\n color: #212529;\n border-color: #212529;\n}\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {\n box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);\n}\n.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);\n}\n.btn-outline-dark:disabled, .btn-outline-dark.disabled {\n color: #212529;\n background-color: transparent;\n}\n\n.btn-link {\n font-weight: 400;\n color: #0d6efd;\n text-decoration: underline;\n}\n.btn-link:hover {\n color: #0a58ca;\n}\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.2rem;\n}\n\n.fade {\n transition: opacity 0.15s linear;\n}\n@media (prefers-reduced-motion: reduce) {\n .fade {\n transition: none;\n }\n}\n.fade:not(.show) {\n opacity: 0;\n}\n\n.collapse:not(.show) {\n display: none;\n}\n\n.collapsing {\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none;\n }\n}\n.collapsing.collapse-horizontal {\n width: 0;\n height: auto;\n transition: width 0.35s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .collapsing.collapse-horizontal {\n transition: none;\n }\n}\n\n.dropup,\n.dropend,\n.dropdown,\n.dropstart {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n}\n.dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n z-index: 1000;\n display: none;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n.dropdown-menu[data-bs-popper] {\n top: 100%;\n left: 0;\n margin-top: 0.125rem;\n}\n\n.dropdown-menu-start {\n --bs-position: start;\n}\n.dropdown-menu-start[data-bs-popper] {\n right: auto;\n left: 0;\n}\n\n.dropdown-menu-end {\n --bs-position: end;\n}\n.dropdown-menu-end[data-bs-popper] {\n right: 0;\n left: auto;\n}\n\n@media (min-width: 576px) {\n .dropdown-menu-sm-start {\n --bs-position: start;\n }\n .dropdown-menu-sm-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-sm-end {\n --bs-position: end;\n }\n .dropdown-menu-sm-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 768px) {\n .dropdown-menu-md-start {\n --bs-position: start;\n }\n .dropdown-menu-md-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-md-end {\n --bs-position: end;\n }\n .dropdown-menu-md-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 992px) {\n .dropdown-menu-lg-start {\n --bs-position: start;\n }\n .dropdown-menu-lg-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-lg-end {\n --bs-position: end;\n }\n .dropdown-menu-lg-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 1200px) {\n .dropdown-menu-xl-start {\n --bs-position: start;\n }\n .dropdown-menu-xl-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-xl-end {\n --bs-position: end;\n }\n .dropdown-menu-xl-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 1400px) {\n .dropdown-menu-xxl-start {\n --bs-position: start;\n }\n .dropdown-menu-xxl-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-xxl-end {\n --bs-position: end;\n }\n .dropdown-menu-xxl-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n.dropup .dropdown-menu[data-bs-popper] {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n.dropup .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropend .dropdown-menu[data-bs-popper] {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem;\n}\n.dropend .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n.dropend .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n.dropend .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropstart .dropdown-menu[data-bs-popper] {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem;\n}\n.dropstart .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n.dropstart .dropdown-toggle::after {\n display: none;\n}\n.dropstart .dropdown-toggle::before {\n display: inline-block;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n.dropstart .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n.dropstart .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n text-decoration: none;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n.dropdown-item:hover, .dropdown-item:focus {\n color: #1e2125;\n background-color: #e9ecef;\n}\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #0d6efd;\n}\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #adb5bd;\n pointer-events: none;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1rem;\n color: #212529;\n}\n\n.dropdown-menu-dark {\n color: #dee2e6;\n background-color: #343a40;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.dropdown-menu-dark .dropdown-item {\n color: #dee2e6;\n}\n.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {\n color: #fff;\n background-color: rgba(255, 255, 255, 0.15);\n}\n.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {\n color: #fff;\n background-color: #0d6efd;\n}\n.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {\n color: #adb5bd;\n}\n.dropdown-menu-dark .dropdown-divider {\n border-color: rgba(0, 0, 0, 0.15);\n}\n.dropdown-menu-dark .dropdown-item-text {\n color: #dee2e6;\n}\n.dropdown-menu-dark .dropdown-header {\n color: #adb5bd;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 1 1 auto;\n}\n.btn-group > .btn-check:checked + .btn,\n.btn-group > .btn-check:focus + .btn,\n.btn-group > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn-check:checked + .btn,\n.btn-group-vertical > .btn-check:focus + .btn,\n.btn-group-vertical > .btn:hover,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n margin-left: -1px;\n}\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.btn-group > .btn:nth-child(n+3),\n.btn-group > :not(.btn-check) + .btn,\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {\n margin-left: 0;\n}\n.dropstart .dropdown-toggle-split::before {\n margin-right: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group {\n width: 100%;\n}\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) {\n margin-top: -1px;\n}\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn ~ .btn,\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n color: #0d6efd;\n text-decoration: none;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .nav-link {\n transition: none;\n }\n}\n.nav-link:hover, .nav-link:focus {\n color: #0a58ca;\n}\n.nav-link.disabled {\n color: #6c757d;\n pointer-events: none;\n cursor: default;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n.nav-tabs .nav-link {\n margin-bottom: -1px;\n background: none;\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n isolation: isolate;\n}\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n background: none;\n border: 0;\n border-radius: 0.25rem;\n}\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #0d6efd;\n}\n\n.nav-fill > .nav-link,\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified > .nav-link,\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.nav-fill .nav-item .nav-link,\n.nav-justified .nav-item .nav-link {\n width: 100%;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n.navbar > .container,\n.navbar > .container-fluid,\n.navbar > .container-sm,\n.navbar > .container-md,\n.navbar > .container-lg,\n.navbar > .container-xl,\n.navbar > .container-xxl {\n display: flex;\n flex-wrap: inherit;\n align-items: center;\n justify-content: space-between;\n}\n.navbar-brand {\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n text-decoration: none;\n white-space: nowrap;\n}\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n.navbar-nav .dropdown-menu {\n position: static;\n}\n\n.navbar-text {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n transition: box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .navbar-toggler {\n transition: none;\n }\n}\n.navbar-toggler:hover {\n text-decoration: none;\n}\n.navbar-toggler:focus {\n text-decoration: none;\n outline: 0;\n box-shadow: 0 0 0 0.25rem;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n background-repeat: no-repeat;\n background-position: center;\n background-size: 100%;\n}\n\n.navbar-nav-scroll {\n max-height: var(--bs-scroll-height, 75vh);\n overflow-y: auto;\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n .navbar-expand-sm .offcanvas-header {\n display: none;\n }\n .navbar-expand-sm .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-sm .offcanvas-top,\n.navbar-expand-sm .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-sm .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n .navbar-expand-md .offcanvas-header {\n display: none;\n }\n .navbar-expand-md .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-md .offcanvas-top,\n.navbar-expand-md .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-md .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n .navbar-expand-lg .offcanvas-header {\n display: none;\n }\n .navbar-expand-lg .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-lg .offcanvas-top,\n.navbar-expand-lg .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-lg .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xl .offcanvas-header {\n display: none;\n }\n .navbar-expand-xl .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-xl .offcanvas-top,\n.navbar-expand-xl .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-xl .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 1400px) {\n .navbar-expand-xxl {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xxl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xxl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xxl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xxl .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-xxl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xxl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xxl .offcanvas-header {\n display: none;\n }\n .navbar-expand-xxl .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-xxl .offcanvas-top,\n.navbar-expand-xxl .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-xxl .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n.navbar-expand {\n flex-wrap: nowrap;\n justify-content: flex-start;\n}\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n.navbar-expand .navbar-nav-scroll {\n overflow: visible;\n}\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n.navbar-expand .navbar-toggler {\n display: none;\n}\n.navbar-expand .offcanvas-header {\n display: none;\n}\n.navbar-expand .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n}\n.navbar-expand .offcanvas-top,\n.navbar-expand .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n}\n.navbar-expand .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.55);\n}\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.55);\n border-color: rgba(0, 0, 0, 0.1);\n}\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.55);\n}\n.navbar-light .navbar-text a,\n.navbar-light .navbar-text a:hover,\n.navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.55);\n}\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.55);\n border-color: rgba(255, 255, 255, 0.1);\n}\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.55);\n}\n.navbar-dark .navbar-text a,\n.navbar-dark .navbar-text a:hover,\n.navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n.card > .list-group {\n border-top: inherit;\n border-bottom: inherit;\n}\n.card > .list-group:first-child {\n border-top-width: 0;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n.card > .list-group:last-child {\n border-bottom-width: 0;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n.card > .card-header + .list-group,\n.card > .list-group + .card-footer {\n border-top: 0;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1rem 1rem;\n}\n\n.card-title {\n margin-bottom: 0.5rem;\n}\n\n.card-subtitle {\n margin-top: -0.25rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link + .card-link {\n margin-left: 1rem;\n}\n\n.card-header {\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-footer {\n padding: 0.5rem 1rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.5rem;\n margin-bottom: -0.5rem;\n margin-left: -0.5rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.5rem;\n margin-left: -0.5rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1rem;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img,\n.card-img-top,\n.card-img-bottom {\n width: 100%;\n}\n\n.card-img,\n.card-img-top {\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img,\n.card-img-bottom {\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-group > .card {\n margin-bottom: 0.75rem;\n}\n@media (min-width: 576px) {\n .card-group {\n display: flex;\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-top,\n.card-group > .card:not(:last-child) .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-bottom,\n.card-group > .card:not(:last-child) .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-top,\n.card-group > .card:not(:first-child) .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-bottom,\n.card-group > .card:not(:first-child) .card-footer {\n border-bottom-left-radius: 0;\n }\n}\n\n.accordion-button {\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n padding: 1rem 1.25rem;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n background-color: #fff;\n border: 0;\n border-radius: 0;\n overflow-anchor: none;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .accordion-button {\n transition: none;\n }\n}\n.accordion-button:not(.collapsed) {\n color: #0c63e4;\n background-color: #e7f1ff;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);\n}\n.accordion-button:not(.collapsed)::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");\n transform: rotate(-180deg);\n}\n.accordion-button::after {\n flex-shrink: 0;\n width: 1.25rem;\n height: 1.25rem;\n margin-left: auto;\n content: \"\";\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-size: 1.25rem;\n transition: transform 0.2s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .accordion-button::after {\n transition: none;\n }\n}\n.accordion-button:hover {\n z-index: 2;\n}\n.accordion-button:focus {\n z-index: 3;\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n\n.accordion-header {\n margin-bottom: 0;\n}\n\n.accordion-item {\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n.accordion-item:first-of-type {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n.accordion-item:first-of-type .accordion-button {\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n.accordion-item:not(:first-of-type) {\n border-top: 0;\n}\n.accordion-item:last-of-type {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n.accordion-item:last-of-type .accordion-button.collapsed {\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n.accordion-item:last-of-type .accordion-collapse {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.accordion-body {\n padding: 1rem 1.25rem;\n}\n\n.accordion-flush .accordion-collapse {\n border-width: 0;\n}\n.accordion-flush .accordion-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n.accordion-flush .accordion-item:first-child {\n border-top: 0;\n}\n.accordion-flush .accordion-item:last-child {\n border-bottom: 0;\n}\n.accordion-flush .accordion-item .accordion-button {\n border-radius: 0;\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0 0;\n margin-bottom: 1rem;\n list-style: none;\n}\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem;\n}\n.breadcrumb-item + .breadcrumb-item::before {\n float: left;\n padding-right: 0.5rem;\n color: #6c757d;\n content: var(--bs-breadcrumb-divider, \"/\") /* rtl: var(--bs-breadcrumb-divider, \"/\") */;\n}\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n}\n\n.page-link {\n position: relative;\n display: block;\n color: #0d6efd;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid #dee2e6;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .page-link {\n transition: none;\n }\n}\n.page-link:hover {\n z-index: 2;\n color: #0a58ca;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n.page-link:focus {\n z-index: 3;\n color: #0a58ca;\n background-color: #e9ecef;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n\n.page-item:not(:first-child) .page-link {\n margin-left: -1px;\n}\n.page-item.active .page-link {\n z-index: 3;\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.page-link {\n padding: 0.375rem 0.75rem;\n}\n\n.page-item:first-child .page-link {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n}\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n}\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.35em 0.65em;\n font-size: 0.75em;\n font-weight: 700;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.alert {\n position: relative;\n padding: 1rem 1rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 3rem;\n}\n.alert-dismissible .btn-close {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n padding: 1.25rem 1rem;\n}\n\n.alert-primary {\n color: #084298;\n background-color: #cfe2ff;\n border-color: #b6d4fe;\n}\n.alert-primary .alert-link {\n color: #06357a;\n}\n\n.alert-secondary {\n color: #41464b;\n background-color: #e2e3e5;\n border-color: #d3d6d8;\n}\n.alert-secondary .alert-link {\n color: #34383c;\n}\n\n.alert-success {\n color: #0f5132;\n background-color: #d1e7dd;\n border-color: #badbcc;\n}\n.alert-success .alert-link {\n color: #0c4128;\n}\n\n.alert-info {\n color: #055160;\n background-color: #cff4fc;\n border-color: #b6effb;\n}\n.alert-info .alert-link {\n color: #04414d;\n}\n\n.alert-warning {\n color: #664d03;\n background-color: #fff3cd;\n border-color: #ffecb5;\n}\n.alert-warning .alert-link {\n color: #523e02;\n}\n\n.alert-danger {\n color: #842029;\n background-color: #f8d7da;\n border-color: #f5c2c7;\n}\n.alert-danger .alert-link {\n color: #6a1a21;\n}\n\n.alert-light {\n color: #636464;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n.alert-light .alert-link {\n color: #4f5050;\n}\n\n.alert-dark {\n color: #141619;\n background-color: #d3d3d4;\n border-color: #bcbebf;\n}\n.alert-dark .alert-link {\n color: #101214;\n}\n\n@-webkit-keyframes progress-bar-stripes {\n 0% {\n background-position-x: 1rem;\n }\n}\n\n@keyframes progress-bar-stripes {\n 0% {\n background-position-x: 1rem;\n }\n}\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n overflow: hidden;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #0d6efd;\n transition: width 0.6s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none;\n }\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n -webkit-animation: 1s linear infinite progress-bar-stripes;\n animation: 1s linear infinite progress-bar-stripes;\n}\n@media (prefers-reduced-motion: reduce) {\n .progress-bar-animated {\n -webkit-animation: none;\n animation: none;\n }\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n border-radius: 0.25rem;\n}\n\n.list-group-numbered {\n list-style-type: none;\n counter-reset: section;\n}\n.list-group-numbered > li::before {\n content: counters(section, \".\") \". \";\n counter-increment: section;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n.list-group-item-action:hover, .list-group-item-action:focus {\n z-index: 1;\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.5rem 1rem;\n color: #212529;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n.list-group-item:first-child {\n border-top-left-radius: inherit;\n border-top-right-radius: inherit;\n}\n.list-group-item:last-child {\n border-bottom-right-radius: inherit;\n border-bottom-left-radius: inherit;\n}\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff;\n}\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.list-group-item + .list-group-item {\n border-top-width: 0;\n}\n.list-group-item + .list-group-item.active {\n margin-top: -1px;\n border-top-width: 1px;\n}\n\n.list-group-horizontal {\n flex-direction: row;\n}\n.list-group-horizontal > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n}\n.list-group-horizontal > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n}\n.list-group-horizontal > .list-group-item.active {\n margin-top: 0;\n}\n.list-group-horizontal > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n}\n.list-group-horizontal > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n}\n\n@media (min-width: 576px) {\n .list-group-horizontal-sm {\n flex-direction: row;\n }\n .list-group-horizontal-sm > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-sm > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-sm > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-sm > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-sm > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 768px) {\n .list-group-horizontal-md {\n flex-direction: row;\n }\n .list-group-horizontal-md > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-md > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-md > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-md > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-md > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 992px) {\n .list-group-horizontal-lg {\n flex-direction: row;\n }\n .list-group-horizontal-lg > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-lg > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-lg > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-lg > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-lg > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 1200px) {\n .list-group-horizontal-xl {\n flex-direction: row;\n }\n .list-group-horizontal-xl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-xl > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-xl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-xl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 1400px) {\n .list-group-horizontal-xxl {\n flex-direction: row;\n }\n .list-group-horizontal-xxl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xxl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-xxl > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-xxl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n.list-group-flush {\n border-radius: 0;\n}\n.list-group-flush > .list-group-item {\n border-width: 0 0 1px;\n}\n.list-group-flush > .list-group-item:last-child {\n border-bottom-width: 0;\n}\n\n.list-group-item-primary {\n color: #084298;\n background-color: #cfe2ff;\n}\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #084298;\n background-color: #bacbe6;\n}\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #084298;\n border-color: #084298;\n}\n\n.list-group-item-secondary {\n color: #41464b;\n background-color: #e2e3e5;\n}\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #41464b;\n background-color: #cbccce;\n}\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #41464b;\n border-color: #41464b;\n}\n\n.list-group-item-success {\n color: #0f5132;\n background-color: #d1e7dd;\n}\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #0f5132;\n background-color: #bcd0c7;\n}\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #0f5132;\n border-color: #0f5132;\n}\n\n.list-group-item-info {\n color: #055160;\n background-color: #cff4fc;\n}\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #055160;\n background-color: #badce3;\n}\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #055160;\n border-color: #055160;\n}\n\n.list-group-item-warning {\n color: #664d03;\n background-color: #fff3cd;\n}\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #664d03;\n background-color: #e6dbb9;\n}\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #664d03;\n border-color: #664d03;\n}\n\n.list-group-item-danger {\n color: #842029;\n background-color: #f8d7da;\n}\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #842029;\n background-color: #dfc2c4;\n}\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #842029;\n border-color: #842029;\n}\n\n.list-group-item-light {\n color: #636464;\n background-color: #fefefe;\n}\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #636464;\n background-color: #e5e5e5;\n}\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #636464;\n border-color: #636464;\n}\n\n.list-group-item-dark {\n color: #141619;\n background-color: #d3d3d4;\n}\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #141619;\n background-color: #bebebf;\n}\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #141619;\n border-color: #141619;\n}\n\n.btn-close {\n box-sizing: content-box;\n width: 1em;\n height: 1em;\n padding: 0.25em 0.25em;\n color: #000;\n background: transparent url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;\n border: 0;\n border-radius: 0.25rem;\n opacity: 0.5;\n}\n.btn-close:hover {\n color: #000;\n text-decoration: none;\n opacity: 0.75;\n}\n.btn-close:focus {\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n opacity: 1;\n}\n.btn-close:disabled, .btn-close.disabled {\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n opacity: 0.25;\n}\n\n.btn-close-white {\n filter: invert(1) grayscale(100%) brightness(200%);\n}\n\n.toast {\n width: 350px;\n max-width: 100%;\n font-size: 0.875rem;\n pointer-events: auto;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.1);\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n.toast.showing {\n opacity: 0;\n}\n.toast:not(.show) {\n display: none;\n}\n\n.toast-container {\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n max-width: 100%;\n pointer-events: none;\n}\n.toast-container > :not(:last-child) {\n margin-bottom: 0.75rem;\n}\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: 0.5rem 0.75rem;\n color: #6c757d;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n.toast-header .btn-close {\n margin-right: -0.375rem;\n margin-left: 0.75rem;\n}\n\n.toast-body {\n padding: 0.75rem;\n word-wrap: break-word;\n}\n\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1055;\n display: none;\n width: 100%;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n outline: 0;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -50px);\n}\n@media (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none;\n }\n}\n.modal.show .modal-dialog {\n transform: none;\n}\n.modal.modal-static .modal-dialog {\n transform: scale(1.02);\n}\n\n.modal-dialog-scrollable {\n height: calc(100% - 1rem);\n}\n.modal-dialog-scrollable .modal-content {\n max-height: 100%;\n overflow: hidden;\n}\n.modal-dialog-scrollable .modal-body {\n overflow-y: auto;\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - 1rem);\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1050;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n}\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: space-between;\n padding: 1rem 1rem;\n border-bottom: 1px solid #dee2e6;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n.modal-header .btn-close {\n padding: 0.5rem 0.5rem;\n margin: -0.5rem -0.5rem -0.5rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n flex-wrap: wrap;\n flex-shrink: 0;\n align-items: center;\n justify-content: flex-end;\n padding: 0.75rem;\n border-top: 1px solid #dee2e6;\n border-bottom-right-radius: calc(0.3rem - 1px);\n border-bottom-left-radius: calc(0.3rem - 1px);\n}\n.modal-footer > * {\n margin: 0.25rem;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n\n .modal-dialog-scrollable {\n height: calc(100% - 3.5rem);\n }\n\n .modal-dialog-centered {\n min-height: calc(100% - 3.5rem);\n }\n\n .modal-sm {\n max-width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg,\n.modal-xl {\n max-width: 800px;\n }\n}\n@media (min-width: 1200px) {\n .modal-xl {\n max-width: 1140px;\n }\n}\n.modal-fullscreen {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n}\n.modal-fullscreen .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n}\n.modal-fullscreen .modal-header {\n border-radius: 0;\n}\n.modal-fullscreen .modal-body {\n overflow-y: auto;\n}\n.modal-fullscreen .modal-footer {\n border-radius: 0;\n}\n\n@media (max-width: 575.98px) {\n .modal-fullscreen-sm-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-sm-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-sm-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-sm-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-sm-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 767.98px) {\n .modal-fullscreen-md-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-md-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-md-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-md-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-md-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 991.98px) {\n .modal-fullscreen-lg-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-lg-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-lg-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-lg-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-lg-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 1199.98px) {\n .modal-fullscreen-xl-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-xl-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-xl-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-xl-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-xl-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 1399.98px) {\n .modal-fullscreen-xxl-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-xxl-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-xxl-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-xxl-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-xxl-down .modal-footer {\n border-radius: 0;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1080;\n display: block;\n margin: 0;\n font-family: var(--bs-font-sans-serif);\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n.tooltip.show {\n opacity: 0.9;\n}\n.tooltip .tooltip-arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n.tooltip .tooltip-arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {\n padding: 0.4rem 0;\n}\n.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {\n bottom: 0;\n}\n.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {\n top: -1px;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {\n padding: 0 0.4rem;\n}\n.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {\n right: -1px;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {\n padding: 0.4rem 0;\n}\n.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {\n top: 0;\n}\n.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {\n bottom: -1px;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {\n padding: 0 0.4rem;\n}\n.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {\n left: -1px;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0 /* rtl:ignore */;\n z-index: 1070;\n display: block;\n max-width: 276px;\n font-family: var(--bs-font-sans-serif);\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n.popover .popover-arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n}\n.popover .popover-arrow::before, .popover .popover-arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {\n bottom: calc(-0.5rem - 1px);\n}\n.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {\n bottom: 0;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {\n bottom: 1px;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: #fff;\n}\n\n.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {\n left: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n}\n.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {\n left: 0;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {\n left: 1px;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {\n top: calc(-0.5rem - 1px);\n}\n.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {\n top: 0;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {\n top: 1px;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: #fff;\n}\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f0f0f0;\n}\n\n.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {\n right: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n}\n.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {\n right: 0;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {\n right: 1px;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n font-size: 1rem;\n background-color: #f0f0f0;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 1rem 1rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n.carousel-inner::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n transition: transform 0.6s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-item {\n transition: none;\n }\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n/* rtl:begin:ignore */\n.carousel-item-next:not(.carousel-item-start),\n.active.carousel-item-end {\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-end),\n.active.carousel-item-start {\n transform: translateX(-100%);\n}\n\n/* rtl:end:ignore */\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none;\n}\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-start,\n.carousel-fade .carousel-item-prev.carousel-item-end {\n z-index: 1;\n opacity: 1;\n}\n.carousel-fade .active.carousel-item-start,\n.carousel-fade .active.carousel-item-end {\n z-index: 0;\n opacity: 0;\n transition: opacity 0s 0.6s;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-fade .active.carousel-item-start,\n.carousel-fade .active.carousel-item-end {\n transition: none;\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n padding: 0;\n color: #fff;\n text-align: center;\n background: none;\n border: 0;\n opacity: 0.5;\n transition: opacity 0.15s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n.carousel-control-next {\n transition: none;\n }\n}\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: 0.9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n background-repeat: no-repeat;\n background-position: 50%;\n background-size: 100% 100%;\n}\n\n/* rtl:options: {\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n} */\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 2;\n display: flex;\n justify-content: center;\n padding: 0;\n margin-right: 15%;\n margin-bottom: 1rem;\n margin-left: 15%;\n list-style: none;\n}\n.carousel-indicators [data-bs-target] {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n padding: 0;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #fff;\n background-clip: padding-box;\n border: 0;\n border-top: 10px solid transparent;\n border-bottom: 10px solid transparent;\n opacity: 0.5;\n transition: opacity 0.6s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-indicators [data-bs-target] {\n transition: none;\n }\n}\n.carousel-indicators .active {\n opacity: 1;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 1.25rem;\n left: 15%;\n padding-top: 1.25rem;\n padding-bottom: 1.25rem;\n color: #fff;\n text-align: center;\n}\n\n.carousel-dark .carousel-control-prev-icon,\n.carousel-dark .carousel-control-next-icon {\n filter: invert(1) grayscale(100);\n}\n.carousel-dark .carousel-indicators [data-bs-target] {\n background-color: #000;\n}\n.carousel-dark .carousel-caption {\n color: #000;\n}\n\n@-webkit-keyframes spinner-border {\n to {\n transform: rotate(360deg) /* rtl:ignore */;\n }\n}\n\n@keyframes spinner-border {\n to {\n transform: rotate(360deg) /* rtl:ignore */;\n }\n}\n.spinner-border {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: -0.125em;\n border: 0.25em solid currentColor;\n border-right-color: transparent;\n border-radius: 50%;\n -webkit-animation: 0.75s linear infinite spinner-border;\n animation: 0.75s linear infinite spinner-border;\n}\n\n.spinner-border-sm {\n width: 1rem;\n height: 1rem;\n border-width: 0.2em;\n}\n\n@-webkit-keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n\n@keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n.spinner-grow {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: -0.125em;\n background-color: currentColor;\n border-radius: 50%;\n opacity: 0;\n -webkit-animation: 0.75s linear infinite spinner-grow;\n animation: 0.75s linear infinite spinner-grow;\n}\n\n.spinner-grow-sm {\n width: 1rem;\n height: 1rem;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .spinner-border,\n.spinner-grow {\n -webkit-animation-duration: 1.5s;\n animation-duration: 1.5s;\n }\n}\n.offcanvas {\n position: fixed;\n bottom: 0;\n z-index: 1045;\n display: flex;\n flex-direction: column;\n max-width: 100%;\n visibility: hidden;\n background-color: #fff;\n background-clip: padding-box;\n outline: 0;\n transition: transform 0.3s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .offcanvas {\n transition: none;\n }\n}\n\n.offcanvas-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1040;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n.offcanvas-backdrop.fade {\n opacity: 0;\n}\n.offcanvas-backdrop.show {\n opacity: 0.5;\n}\n\n.offcanvas-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 1rem 1rem;\n}\n.offcanvas-header .btn-close {\n padding: 0.5rem 0.5rem;\n margin-top: -0.5rem;\n margin-right: -0.5rem;\n margin-bottom: -0.5rem;\n}\n\n.offcanvas-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.offcanvas-body {\n flex-grow: 1;\n padding: 1rem 1rem;\n overflow-y: auto;\n}\n\n.offcanvas-start {\n top: 0;\n left: 0;\n width: 400px;\n border-right: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateX(-100%);\n}\n\n.offcanvas-end {\n top: 0;\n right: 0;\n width: 400px;\n border-left: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateX(100%);\n}\n\n.offcanvas-top {\n top: 0;\n right: 0;\n left: 0;\n height: 30vh;\n max-height: 100%;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateY(-100%);\n}\n\n.offcanvas-bottom {\n right: 0;\n left: 0;\n height: 30vh;\n max-height: 100%;\n border-top: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateY(100%);\n}\n\n.offcanvas.show {\n transform: none;\n}\n\n.placeholder {\n display: inline-block;\n min-height: 1em;\n vertical-align: middle;\n cursor: wait;\n background-color: currentColor;\n opacity: 0.5;\n}\n.placeholder.btn::before {\n display: inline-block;\n content: \"\";\n}\n\n.placeholder-xs {\n min-height: 0.6em;\n}\n\n.placeholder-sm {\n min-height: 0.8em;\n}\n\n.placeholder-lg {\n min-height: 1.2em;\n}\n\n.placeholder-glow .placeholder {\n -webkit-animation: placeholder-glow 2s ease-in-out infinite;\n animation: placeholder-glow 2s ease-in-out infinite;\n}\n\n@-webkit-keyframes placeholder-glow {\n 50% {\n opacity: 0.2;\n }\n}\n\n@keyframes placeholder-glow {\n 50% {\n opacity: 0.2;\n }\n}\n.placeholder-wave {\n -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);\n mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);\n -webkit-mask-size: 200% 100%;\n mask-size: 200% 100%;\n -webkit-animation: placeholder-wave 2s linear infinite;\n animation: placeholder-wave 2s linear infinite;\n}\n\n@-webkit-keyframes placeholder-wave {\n 100% {\n -webkit-mask-position: -200% 0%;\n mask-position: -200% 0%;\n }\n}\n\n@keyframes placeholder-wave {\n 100% {\n -webkit-mask-position: -200% 0%;\n mask-position: -200% 0%;\n }\n}\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.link-primary {\n color: #0d6efd;\n}\n.link-primary:hover, .link-primary:focus {\n color: #0a58ca;\n}\n\n.link-secondary {\n color: #6c757d;\n}\n.link-secondary:hover, .link-secondary:focus {\n color: #565e64;\n}\n\n.link-success {\n color: #198754;\n}\n.link-success:hover, .link-success:focus {\n color: #146c43;\n}\n\n.link-info {\n color: #0dcaf0;\n}\n.link-info:hover, .link-info:focus {\n color: #3dd5f3;\n}\n\n.link-warning {\n color: #ffc107;\n}\n.link-warning:hover, .link-warning:focus {\n color: #ffcd39;\n}\n\n.link-danger {\n color: #dc3545;\n}\n.link-danger:hover, .link-danger:focus {\n color: #b02a37;\n}\n\n.link-light {\n color: #f8f9fa;\n}\n.link-light:hover, .link-light:focus {\n color: #f9fafb;\n}\n\n.link-dark {\n color: #212529;\n}\n.link-dark:hover, .link-dark:focus {\n color: #1a1e21;\n}\n\n.ratio {\n position: relative;\n width: 100%;\n}\n.ratio::before {\n display: block;\n padding-top: var(--bs-aspect-ratio);\n content: \"\";\n}\n.ratio > * {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n}\n\n.ratio-1x1 {\n --bs-aspect-ratio: 100%;\n}\n\n.ratio-4x3 {\n --bs-aspect-ratio: calc(3 / 4 * 100%);\n}\n\n.ratio-16x9 {\n --bs-aspect-ratio: calc(9 / 16 * 100%);\n}\n\n.ratio-21x9 {\n --bs-aspect-ratio: calc(9 / 21 * 100%);\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n.sticky-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n}\n\n@media (min-width: 576px) {\n .sticky-sm-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 768px) {\n .sticky-md-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 992px) {\n .sticky-lg-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1200px) {\n .sticky-xl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1400px) {\n .sticky-xxl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n.hstack {\n display: flex;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n}\n\n.vstack {\n display: flex;\n flex: 1 1 auto;\n flex-direction: column;\n align-self: stretch;\n}\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n content: \"\";\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.vr {\n display: inline-block;\n align-self: stretch;\n width: 1px;\n min-height: 1em;\n background-color: currentColor;\n opacity: 0.25;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.float-start {\n float: left !important;\n}\n\n.float-end {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n.opacity-0 {\n opacity: 0 !important;\n}\n\n.opacity-25 {\n opacity: 0.25 !important;\n}\n\n.opacity-50 {\n opacity: 0.5 !important;\n}\n\n.opacity-75 {\n opacity: 0.75 !important;\n}\n\n.opacity-100 {\n opacity: 1 !important;\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.overflow-visible {\n overflow: visible !important;\n}\n\n.overflow-scroll {\n overflow: scroll !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: -webkit-sticky !important;\n position: sticky !important;\n}\n\n.top-0 {\n top: 0 !important;\n}\n\n.top-50 {\n top: 50% !important;\n}\n\n.top-100 {\n top: 100% !important;\n}\n\n.bottom-0 {\n bottom: 0 !important;\n}\n\n.bottom-50 {\n bottom: 50% !important;\n}\n\n.bottom-100 {\n bottom: 100% !important;\n}\n\n.start-0 {\n left: 0 !important;\n}\n\n.start-50 {\n left: 50% !important;\n}\n\n.start-100 {\n left: 100% !important;\n}\n\n.end-0 {\n right: 0 !important;\n}\n\n.end-50 {\n right: 50% !important;\n}\n\n.end-100 {\n right: 100% !important;\n}\n\n.translate-middle {\n transform: translate(-50%, -50%) !important;\n}\n\n.translate-middle-x {\n transform: translateX(-50%) !important;\n}\n\n.translate-middle-y {\n transform: translateY(-50%) !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-end {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-end-0 {\n border-right: 0 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-start {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-start-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #0d6efd !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #198754 !important;\n}\n\n.border-info {\n border-color: #0dcaf0 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #212529 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.border-1 {\n border-width: 1px !important;\n}\n\n.border-2 {\n border-width: 2px !important;\n}\n\n.border-3 {\n border-width: 3px !important;\n}\n\n.border-4 {\n border-width: 4px !important;\n}\n\n.border-5 {\n border-width: 5px !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.gap-0 {\n gap: 0 !important;\n}\n\n.gap-1 {\n gap: 0.25rem !important;\n}\n\n.gap-2 {\n gap: 0.5rem !important;\n}\n\n.gap-3 {\n gap: 1rem !important;\n}\n\n.gap-4 {\n gap: 1.5rem !important;\n}\n\n.gap-5 {\n gap: 3rem !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n.font-monospace {\n font-family: var(--bs-font-monospace) !important;\n}\n\n.fs-1 {\n font-size: calc(1.375rem + 1.5vw) !important;\n}\n\n.fs-2 {\n font-size: calc(1.325rem + 0.9vw) !important;\n}\n\n.fs-3 {\n font-size: calc(1.3rem + 0.6vw) !important;\n}\n\n.fs-4 {\n font-size: calc(1.275rem + 0.3vw) !important;\n}\n\n.fs-5 {\n font-size: 1.25rem !important;\n}\n\n.fs-6 {\n font-size: 1rem !important;\n}\n\n.fst-italic {\n font-style: italic !important;\n}\n\n.fst-normal {\n font-style: normal !important;\n}\n\n.fw-light {\n font-weight: 300 !important;\n}\n\n.fw-lighter {\n font-weight: lighter !important;\n}\n\n.fw-normal {\n font-weight: 400 !important;\n}\n\n.fw-bold {\n font-weight: 700 !important;\n}\n\n.fw-bolder {\n font-weight: bolder !important;\n}\n\n.lh-1 {\n line-height: 1 !important;\n}\n\n.lh-sm {\n line-height: 1.25 !important;\n}\n\n.lh-base {\n line-height: 1.5 !important;\n}\n\n.lh-lg {\n line-height: 2 !important;\n}\n\n.text-start {\n text-align: left !important;\n}\n\n.text-end {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n.text-decoration-none {\n text-decoration: none !important;\n}\n\n.text-decoration-underline {\n text-decoration: underline !important;\n}\n\n.text-decoration-line-through {\n text-decoration: line-through !important;\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.text-wrap {\n white-space: normal !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n/* rtl:begin:remove */\n.text-break {\n word-wrap: break-word !important;\n word-break: break-word !important;\n}\n\n/* rtl:end:remove */\n.text-primary {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-secondary {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-success {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-info {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-warning {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-danger {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-light {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-dark {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-black {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-white {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-body {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-body-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-muted {\n --bs-text-opacity: 1;\n color: #6c757d !important;\n}\n\n.text-black-50 {\n --bs-text-opacity: 1;\n color: rgba(0, 0, 0, 0.5) !important;\n}\n\n.text-white-50 {\n --bs-text-opacity: 1;\n color: rgba(255, 255, 255, 0.5) !important;\n}\n\n.text-reset {\n --bs-text-opacity: 1;\n color: inherit !important;\n}\n\n.text-opacity-25 {\n --bs-text-opacity: 0.25;\n}\n\n.text-opacity-50 {\n --bs-text-opacity: 0.5;\n}\n\n.text-opacity-75 {\n --bs-text-opacity: 0.75;\n}\n\n.text-opacity-100 {\n --bs-text-opacity: 1;\n}\n\n.bg-primary {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-secondary {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-success {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-info {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-warning {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-danger {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-light {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-dark {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-black {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-white {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-body {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-body-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-transparent {\n --bs-bg-opacity: 1;\n background-color: transparent !important;\n}\n\n.bg-opacity-10 {\n --bs-bg-opacity: 0.1;\n}\n\n.bg-opacity-25 {\n --bs-bg-opacity: 0.25;\n}\n\n.bg-opacity-50 {\n --bs-bg-opacity: 0.5;\n}\n\n.bg-opacity-75 {\n --bs-bg-opacity: 0.75;\n}\n\n.bg-opacity-100 {\n --bs-bg-opacity: 1;\n}\n\n.bg-gradient {\n background-image: var(--bs-gradient) !important;\n}\n\n.user-select-all {\n -webkit-user-select: all !important;\n -moz-user-select: all !important;\n user-select: all !important;\n}\n\n.user-select-auto {\n -webkit-user-select: auto !important;\n -moz-user-select: auto !important;\n user-select: auto !important;\n}\n\n.user-select-none {\n -webkit-user-select: none !important;\n -moz-user-select: none !important;\n user-select: none !important;\n}\n\n.pe-none {\n pointer-events: none !important;\n}\n\n.pe-auto {\n pointer-events: auto !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.rounded-1 {\n border-radius: 0.2rem !important;\n}\n\n.rounded-2 {\n border-radius: 0.25rem !important;\n}\n\n.rounded-3 {\n border-radius: 0.3rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-pill {\n border-radius: 50rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-end {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-start {\n border-bottom-left-radius: 0.25rem !important;\n border-top-left-radius: 0.25rem !important;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-start {\n float: left !important;\n }\n\n .float-sm-end {\n float: right !important;\n }\n\n .float-sm-none {\n float: none !important;\n }\n\n .d-sm-inline {\n display: inline !important;\n }\n\n .d-sm-inline-block {\n display: inline-block !important;\n }\n\n .d-sm-block {\n display: block !important;\n }\n\n .d-sm-grid {\n display: grid !important;\n }\n\n .d-sm-table {\n display: table !important;\n }\n\n .d-sm-table-row {\n display: table-row !important;\n }\n\n .d-sm-table-cell {\n display: table-cell !important;\n }\n\n .d-sm-flex {\n display: flex !important;\n }\n\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n\n .d-sm-none {\n display: none !important;\n }\n\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-sm-row {\n flex-direction: row !important;\n }\n\n .flex-sm-column {\n flex-direction: column !important;\n }\n\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-sm-0 {\n gap: 0 !important;\n }\n\n .gap-sm-1 {\n gap: 0.25rem !important;\n }\n\n .gap-sm-2 {\n gap: 0.5rem !important;\n }\n\n .gap-sm-3 {\n gap: 1rem !important;\n }\n\n .gap-sm-4 {\n gap: 1.5rem !important;\n }\n\n .gap-sm-5 {\n gap: 3rem !important;\n }\n\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-sm-center {\n justify-content: center !important;\n }\n\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n\n .align-items-sm-center {\n align-items: center !important;\n }\n\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n\n .align-content-sm-center {\n align-content: center !important;\n }\n\n .align-content-sm-between {\n align-content: space-between !important;\n }\n\n .align-content-sm-around {\n align-content: space-around !important;\n }\n\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n\n .align-self-sm-auto {\n align-self: auto !important;\n }\n\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n\n .align-self-sm-center {\n align-self: center !important;\n }\n\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n\n .order-sm-first {\n order: -1 !important;\n }\n\n .order-sm-0 {\n order: 0 !important;\n }\n\n .order-sm-1 {\n order: 1 !important;\n }\n\n .order-sm-2 {\n order: 2 !important;\n }\n\n .order-sm-3 {\n order: 3 !important;\n }\n\n .order-sm-4 {\n order: 4 !important;\n }\n\n .order-sm-5 {\n order: 5 !important;\n }\n\n .order-sm-last {\n order: 6 !important;\n }\n\n .m-sm-0 {\n margin: 0 !important;\n }\n\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n\n .m-sm-3 {\n margin: 1rem !important;\n }\n\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n\n .m-sm-5 {\n margin: 3rem !important;\n }\n\n .m-sm-auto {\n margin: auto !important;\n }\n\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n\n .mt-sm-auto {\n margin-top: auto !important;\n }\n\n .me-sm-0 {\n margin-right: 0 !important;\n }\n\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n\n .me-sm-auto {\n margin-right: auto !important;\n }\n\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n\n .ms-sm-auto {\n margin-left: auto !important;\n }\n\n .p-sm-0 {\n padding: 0 !important;\n }\n\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n\n .p-sm-3 {\n padding: 1rem !important;\n }\n\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n\n .p-sm-5 {\n padding: 3rem !important;\n }\n\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n\n .text-sm-start {\n text-align: left !important;\n }\n\n .text-sm-end {\n text-align: right !important;\n }\n\n .text-sm-center {\n text-align: center !important;\n }\n}\n@media (min-width: 768px) {\n .float-md-start {\n float: left !important;\n }\n\n .float-md-end {\n float: right !important;\n }\n\n .float-md-none {\n float: none !important;\n }\n\n .d-md-inline {\n display: inline !important;\n }\n\n .d-md-inline-block {\n display: inline-block !important;\n }\n\n .d-md-block {\n display: block !important;\n }\n\n .d-md-grid {\n display: grid !important;\n }\n\n .d-md-table {\n display: table !important;\n }\n\n .d-md-table-row {\n display: table-row !important;\n }\n\n .d-md-table-cell {\n display: table-cell !important;\n }\n\n .d-md-flex {\n display: flex !important;\n }\n\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n\n .d-md-none {\n display: none !important;\n }\n\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-md-row {\n flex-direction: row !important;\n }\n\n .flex-md-column {\n flex-direction: column !important;\n }\n\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-md-0 {\n gap: 0 !important;\n }\n\n .gap-md-1 {\n gap: 0.25rem !important;\n }\n\n .gap-md-2 {\n gap: 0.5rem !important;\n }\n\n .gap-md-3 {\n gap: 1rem !important;\n }\n\n .gap-md-4 {\n gap: 1.5rem !important;\n }\n\n .gap-md-5 {\n gap: 3rem !important;\n }\n\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-md-center {\n justify-content: center !important;\n }\n\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-md-start {\n align-items: flex-start !important;\n }\n\n .align-items-md-end {\n align-items: flex-end !important;\n }\n\n .align-items-md-center {\n align-items: center !important;\n }\n\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n\n .align-content-md-start {\n align-content: flex-start !important;\n }\n\n .align-content-md-end {\n align-content: flex-end !important;\n }\n\n .align-content-md-center {\n align-content: center !important;\n }\n\n .align-content-md-between {\n align-content: space-between !important;\n }\n\n .align-content-md-around {\n align-content: space-around !important;\n }\n\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n\n .align-self-md-auto {\n align-self: auto !important;\n }\n\n .align-self-md-start {\n align-self: flex-start !important;\n }\n\n .align-self-md-end {\n align-self: flex-end !important;\n }\n\n .align-self-md-center {\n align-self: center !important;\n }\n\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n\n .order-md-first {\n order: -1 !important;\n }\n\n .order-md-0 {\n order: 0 !important;\n }\n\n .order-md-1 {\n order: 1 !important;\n }\n\n .order-md-2 {\n order: 2 !important;\n }\n\n .order-md-3 {\n order: 3 !important;\n }\n\n .order-md-4 {\n order: 4 !important;\n }\n\n .order-md-5 {\n order: 5 !important;\n }\n\n .order-md-last {\n order: 6 !important;\n }\n\n .m-md-0 {\n margin: 0 !important;\n }\n\n .m-md-1 {\n margin: 0.25rem !important;\n }\n\n .m-md-2 {\n margin: 0.5rem !important;\n }\n\n .m-md-3 {\n margin: 1rem !important;\n }\n\n .m-md-4 {\n margin: 1.5rem !important;\n }\n\n .m-md-5 {\n margin: 3rem !important;\n }\n\n .m-md-auto {\n margin: auto !important;\n }\n\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-md-0 {\n margin-top: 0 !important;\n }\n\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n\n .mt-md-auto {\n margin-top: auto !important;\n }\n\n .me-md-0 {\n margin-right: 0 !important;\n }\n\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-md-3 {\n margin-right: 1rem !important;\n }\n\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-md-5 {\n margin-right: 3rem !important;\n }\n\n .me-md-auto {\n margin-right: auto !important;\n }\n\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n\n .ms-md-0 {\n margin-left: 0 !important;\n }\n\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n\n .ms-md-auto {\n margin-left: auto !important;\n }\n\n .p-md-0 {\n padding: 0 !important;\n }\n\n .p-md-1 {\n padding: 0.25rem !important;\n }\n\n .p-md-2 {\n padding: 0.5rem !important;\n }\n\n .p-md-3 {\n padding: 1rem !important;\n }\n\n .p-md-4 {\n padding: 1.5rem !important;\n }\n\n .p-md-5 {\n padding: 3rem !important;\n }\n\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-md-0 {\n padding-top: 0 !important;\n }\n\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n\n .pe-md-0 {\n padding-right: 0 !important;\n }\n\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-md-0 {\n padding-left: 0 !important;\n }\n\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n\n .text-md-start {\n text-align: left !important;\n }\n\n .text-md-end {\n text-align: right !important;\n }\n\n .text-md-center {\n text-align: center !important;\n }\n}\n@media (min-width: 992px) {\n .float-lg-start {\n float: left !important;\n }\n\n .float-lg-end {\n float: right !important;\n }\n\n .float-lg-none {\n float: none !important;\n }\n\n .d-lg-inline {\n display: inline !important;\n }\n\n .d-lg-inline-block {\n display: inline-block !important;\n }\n\n .d-lg-block {\n display: block !important;\n }\n\n .d-lg-grid {\n display: grid !important;\n }\n\n .d-lg-table {\n display: table !important;\n }\n\n .d-lg-table-row {\n display: table-row !important;\n }\n\n .d-lg-table-cell {\n display: table-cell !important;\n }\n\n .d-lg-flex {\n display: flex !important;\n }\n\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n\n .d-lg-none {\n display: none !important;\n }\n\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-lg-row {\n flex-direction: row !important;\n }\n\n .flex-lg-column {\n flex-direction: column !important;\n }\n\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-lg-0 {\n gap: 0 !important;\n }\n\n .gap-lg-1 {\n gap: 0.25rem !important;\n }\n\n .gap-lg-2 {\n gap: 0.5rem !important;\n }\n\n .gap-lg-3 {\n gap: 1rem !important;\n }\n\n .gap-lg-4 {\n gap: 1.5rem !important;\n }\n\n .gap-lg-5 {\n gap: 3rem !important;\n }\n\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-lg-center {\n justify-content: center !important;\n }\n\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n\n .align-items-lg-center {\n align-items: center !important;\n }\n\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n\n .align-content-lg-center {\n align-content: center !important;\n }\n\n .align-content-lg-between {\n align-content: space-between !important;\n }\n\n .align-content-lg-around {\n align-content: space-around !important;\n }\n\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n\n .align-self-lg-auto {\n align-self: auto !important;\n }\n\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n\n .align-self-lg-center {\n align-self: center !important;\n }\n\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n\n .order-lg-first {\n order: -1 !important;\n }\n\n .order-lg-0 {\n order: 0 !important;\n }\n\n .order-lg-1 {\n order: 1 !important;\n }\n\n .order-lg-2 {\n order: 2 !important;\n }\n\n .order-lg-3 {\n order: 3 !important;\n }\n\n .order-lg-4 {\n order: 4 !important;\n }\n\n .order-lg-5 {\n order: 5 !important;\n }\n\n .order-lg-last {\n order: 6 !important;\n }\n\n .m-lg-0 {\n margin: 0 !important;\n }\n\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n\n .m-lg-3 {\n margin: 1rem !important;\n }\n\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n\n .m-lg-5 {\n margin: 3rem !important;\n }\n\n .m-lg-auto {\n margin: auto !important;\n }\n\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n\n .mt-lg-auto {\n margin-top: auto !important;\n }\n\n .me-lg-0 {\n margin-right: 0 !important;\n }\n\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n\n .me-lg-auto {\n margin-right: auto !important;\n }\n\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n\n .ms-lg-auto {\n margin-left: auto !important;\n }\n\n .p-lg-0 {\n padding: 0 !important;\n }\n\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n\n .p-lg-3 {\n padding: 1rem !important;\n }\n\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n\n .p-lg-5 {\n padding: 3rem !important;\n }\n\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n\n .text-lg-start {\n text-align: left !important;\n }\n\n .text-lg-end {\n text-align: right !important;\n }\n\n .text-lg-center {\n text-align: center !important;\n }\n}\n@media (min-width: 1200px) {\n .float-xl-start {\n float: left !important;\n }\n\n .float-xl-end {\n float: right !important;\n }\n\n .float-xl-none {\n float: none !important;\n }\n\n .d-xl-inline {\n display: inline !important;\n }\n\n .d-xl-inline-block {\n display: inline-block !important;\n }\n\n .d-xl-block {\n display: block !important;\n }\n\n .d-xl-grid {\n display: grid !important;\n }\n\n .d-xl-table {\n display: table !important;\n }\n\n .d-xl-table-row {\n display: table-row !important;\n }\n\n .d-xl-table-cell {\n display: table-cell !important;\n }\n\n .d-xl-flex {\n display: flex !important;\n }\n\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xl-none {\n display: none !important;\n }\n\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xl-row {\n flex-direction: row !important;\n }\n\n .flex-xl-column {\n flex-direction: column !important;\n }\n\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-xl-0 {\n gap: 0 !important;\n }\n\n .gap-xl-1 {\n gap: 0.25rem !important;\n }\n\n .gap-xl-2 {\n gap: 0.5rem !important;\n }\n\n .gap-xl-3 {\n gap: 1rem !important;\n }\n\n .gap-xl-4 {\n gap: 1.5rem !important;\n }\n\n .gap-xl-5 {\n gap: 3rem !important;\n }\n\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xl-center {\n justify-content: center !important;\n }\n\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xl-center {\n align-items: center !important;\n }\n\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xl-center {\n align-content: center !important;\n }\n\n .align-content-xl-between {\n align-content: space-between !important;\n }\n\n .align-content-xl-around {\n align-content: space-around !important;\n }\n\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xl-auto {\n align-self: auto !important;\n }\n\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xl-center {\n align-self: center !important;\n }\n\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n\n .order-xl-first {\n order: -1 !important;\n }\n\n .order-xl-0 {\n order: 0 !important;\n }\n\n .order-xl-1 {\n order: 1 !important;\n }\n\n .order-xl-2 {\n order: 2 !important;\n }\n\n .order-xl-3 {\n order: 3 !important;\n }\n\n .order-xl-4 {\n order: 4 !important;\n }\n\n .order-xl-5 {\n order: 5 !important;\n }\n\n .order-xl-last {\n order: 6 !important;\n }\n\n .m-xl-0 {\n margin: 0 !important;\n }\n\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xl-3 {\n margin: 1rem !important;\n }\n\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xl-5 {\n margin: 3rem !important;\n }\n\n .m-xl-auto {\n margin: auto !important;\n }\n\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xl-auto {\n margin-top: auto !important;\n }\n\n .me-xl-0 {\n margin-right: 0 !important;\n }\n\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xl-auto {\n margin-right: auto !important;\n }\n\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xl-auto {\n margin-left: auto !important;\n }\n\n .p-xl-0 {\n padding: 0 !important;\n }\n\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xl-3 {\n padding: 1rem !important;\n }\n\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xl-5 {\n padding: 3rem !important;\n }\n\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n\n .text-xl-start {\n text-align: left !important;\n }\n\n .text-xl-end {\n text-align: right !important;\n }\n\n .text-xl-center {\n text-align: center !important;\n }\n}\n@media (min-width: 1400px) {\n .float-xxl-start {\n float: left !important;\n }\n\n .float-xxl-end {\n float: right !important;\n }\n\n .float-xxl-none {\n float: none !important;\n }\n\n .d-xxl-inline {\n display: inline !important;\n }\n\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n\n .d-xxl-block {\n display: block !important;\n }\n\n .d-xxl-grid {\n display: grid !important;\n }\n\n .d-xxl-table {\n display: table !important;\n }\n\n .d-xxl-table-row {\n display: table-row !important;\n }\n\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n\n .d-xxl-flex {\n display: flex !important;\n }\n\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xxl-none {\n display: none !important;\n }\n\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xxl-row {\n flex-direction: row !important;\n }\n\n .flex-xxl-column {\n flex-direction: column !important;\n }\n\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-xxl-0 {\n gap: 0 !important;\n }\n\n .gap-xxl-1 {\n gap: 0.25rem !important;\n }\n\n .gap-xxl-2 {\n gap: 0.5rem !important;\n }\n\n .gap-xxl-3 {\n gap: 1rem !important;\n }\n\n .gap-xxl-4 {\n gap: 1.5rem !important;\n }\n\n .gap-xxl-5 {\n gap: 3rem !important;\n }\n\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xxl-center {\n align-items: center !important;\n }\n\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xxl-center {\n align-content: center !important;\n }\n\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xxl-center {\n align-self: center !important;\n }\n\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n\n .order-xxl-first {\n order: -1 !important;\n }\n\n .order-xxl-0 {\n order: 0 !important;\n }\n\n .order-xxl-1 {\n order: 1 !important;\n }\n\n .order-xxl-2 {\n order: 2 !important;\n }\n\n .order-xxl-3 {\n order: 3 !important;\n }\n\n .order-xxl-4 {\n order: 4 !important;\n }\n\n .order-xxl-5 {\n order: 5 !important;\n }\n\n .order-xxl-last {\n order: 6 !important;\n }\n\n .m-xxl-0 {\n margin: 0 !important;\n }\n\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xxl-3 {\n margin: 1rem !important;\n }\n\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xxl-5 {\n margin: 3rem !important;\n }\n\n .m-xxl-auto {\n margin: auto !important;\n }\n\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xxl-auto {\n margin-right: auto !important;\n }\n\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n\n .p-xxl-0 {\n padding: 0 !important;\n }\n\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xxl-3 {\n padding: 1rem !important;\n }\n\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xxl-5 {\n padding: 3rem !important;\n }\n\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n\n .text-xxl-start {\n text-align: left !important;\n }\n\n .text-xxl-end {\n text-align: right !important;\n }\n\n .text-xxl-center {\n text-align: center !important;\n }\n}\n@media (min-width: 1200px) {\n .fs-1 {\n font-size: 2.5rem !important;\n }\n\n .fs-2 {\n font-size: 2rem !important;\n }\n\n .fs-3 {\n font-size: 1.75rem !important;\n }\n\n .fs-4 {\n font-size: 1.5rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n\n .d-print-inline-block {\n display: inline-block !important;\n }\n\n .d-print-block {\n display: block !important;\n }\n\n .d-print-grid {\n display: grid !important;\n }\n\n .d-print-table {\n display: table !important;\n }\n\n .d-print-table-row {\n display: table-row !important;\n }\n\n .d-print-table-cell {\n display: table-cell !important;\n }\n\n .d-print-flex {\n display: flex !important;\n }\n\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap.css.map */","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","// stylelint-disable property-disallowed-list\n// Single side border-radius\n\n// Helper function to replace negative values with 0\n@function valid-radius($radius) {\n $return: ();\n @each $value in $radius {\n @if type-of($value) == number {\n $return: append($return, max($value, 0));\n } @else {\n $return: append($return, $value);\n }\n }\n @return $return;\n}\n\n// scss-docs-start border-radius-mixins\n@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {\n @if $enable-rounded {\n border-radius: valid-radius($radius);\n }\n @else if $fallback-border-radius != false {\n border-radius: $fallback-border-radius;\n }\n}\n\n@mixin border-top-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n border-top-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-right-radius: valid-radius($radius);\n border-bottom-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-right-radius: valid-radius($radius);\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-top-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-top-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n// scss-docs-end border-radius-mixins\n","//\n// Headings\n//\n.h1 {\n @extend h1;\n}\n\n.h2 {\n @extend h2;\n}\n\n.h3 {\n @extend h3;\n}\n\n.h4 {\n @extend h4;\n}\n\n.h5 {\n @extend h5;\n}\n\n.h6 {\n @extend h6;\n}\n\n\n.lead {\n @include font-size($lead-font-size);\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n@each $display, $font-size in $display-font-sizes {\n .display-#{$display} {\n @include font-size($font-size);\n font-weight: $display-font-weight;\n line-height: $display-line-height;\n }\n}\n\n//\n// Emphasis\n//\n.small {\n @extend small;\n}\n\n.mark {\n @extend mark;\n}\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled();\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled();\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n @include font-size($initialism-font-size);\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $blockquote-margin-y;\n @include font-size($blockquote-font-size);\n\n > :last-child {\n margin-bottom: 0;\n }\n}\n\n.blockquote-footer {\n margin-top: -$blockquote-margin-y;\n margin-bottom: $blockquote-margin-y;\n @include font-size($blockquote-footer-font-size);\n color: $blockquote-footer-color;\n\n &::before {\n content: \"\\2014\\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all `<img>`s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid();\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid();\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: $spacer * .5;\n line-height: 1;\n}\n\n.figure-caption {\n @include font-size($figure-caption-font-size);\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n width: 100%;\n padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});\n padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$variable-prefix}gutter-x: #{$gutter};\n --#{$variable-prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list\n margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$variable-prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// numberof columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n --#{$variable-prefix}table-bg: #{$table-bg};\n --#{$variable-prefix}table-accent-bg: #{$table-accent-bg};\n --#{$variable-prefix}table-striped-color: #{$table-striped-color};\n --#{$variable-prefix}table-striped-bg: #{$table-striped-bg};\n --#{$variable-prefix}table-active-color: #{$table-active-color};\n --#{$variable-prefix}table-active-bg: #{$table-active-bg};\n --#{$variable-prefix}table-hover-color: #{$table-hover-color};\n --#{$variable-prefix}table-hover-bg: #{$table-hover-bg};\n\n width: 100%;\n margin-bottom: $spacer;\n color: $table-color;\n vertical-align: $table-cell-vertical-align;\n border-color: $table-border-color;\n\n // Target th & td\n // We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class.\n // We use the universal selectors here to simplify the selector (else we would need 6 different selectors).\n // Another advantage is that this generates less code and makes the selector less specific making it easier to override.\n // stylelint-disable-next-line selector-max-universal\n > :not(caption) > * > * {\n padding: $table-cell-padding-y $table-cell-padding-x;\n background-color: var(--#{$variable-prefix}table-bg);\n border-bottom-width: $table-border-width;\n box-shadow: inset 0 0 0 9999px var(--#{$variable-prefix}table-accent-bg);\n }\n\n > tbody {\n vertical-align: inherit;\n }\n\n > thead {\n vertical-align: bottom;\n }\n\n // Highlight border color between thead, tbody and tfoot.\n > :not(:last-child) > :last-child > * {\n border-bottom-color: $table-group-separator-color;\n }\n}\n\n\n//\n// Change placement of captions with a class\n//\n\n.caption-top {\n caption-side: top;\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n // stylelint-disable-next-line selector-max-universal\n > :not(caption) > * > * {\n padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;\n }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n//\n// When borders are added on all sides of the cells, the corners can render odd when\n// these borders do not have the same color or if they are semi-transparent.\n// Therefor we add top and border bottoms to the `tr`s and left and right borders\n// to the `td`s or `th`s\n\n.table-bordered {\n > :not(caption) > * {\n border-width: $table-border-width 0;\n\n // stylelint-disable-next-line selector-max-universal\n > * {\n border-width: 0 $table-border-width;\n }\n }\n}\n\n.table-borderless {\n // stylelint-disable-next-line selector-max-universal\n > :not(caption) > * > * {\n border-bottom-width: 0;\n }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(#{$table-striped-order}) {\n --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-striped-bg);\n color: var(--#{$variable-prefix}table-striped-color);\n }\n}\n\n// Active table\n//\n// The `.table-active` class can be added to highlight rows or cells\n\n.table-active {\n --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-active-bg);\n color: var(--#{$variable-prefix}table-active-color);\n}\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg);\n color: var(--#{$variable-prefix}table-hover-color);\n }\n}\n\n\n// Table variants\n//\n// Table variants set the table cell backgrounds, border colors\n// and the colors of the striped, hovered & active tables\n\n@each $color, $value in $table-variants {\n @include table-variant($color, $value);\n}\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @include media-breakpoint-down($breakpoint) {\n .table-responsive#{$infix} {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n }\n}\n","// scss-docs-start table-variant\n@mixin table-variant($state, $background) {\n .table-#{$state} {\n $color: color-contrast(opaque($body-bg, $background));\n $hover-bg: mix($color, $background, percentage($table-hover-bg-factor));\n $striped-bg: mix($color, $background, percentage($table-striped-bg-factor));\n $active-bg: mix($color, $background, percentage($table-active-bg-factor));\n\n --#{$variable-prefix}table-bg: #{$background};\n --#{$variable-prefix}table-striped-bg: #{$striped-bg};\n --#{$variable-prefix}table-striped-color: #{color-contrast($striped-bg)};\n --#{$variable-prefix}table-active-bg: #{$active-bg};\n --#{$variable-prefix}table-active-color: #{color-contrast($active-bg)};\n --#{$variable-prefix}table-hover-bg: #{$hover-bg};\n --#{$variable-prefix}table-hover-color: #{color-contrast($hover-bg)};\n\n color: $color;\n border-color: mix($color, $background, percentage($table-border-factor));\n }\n}\n// scss-docs-end table-variant\n","//\n// Labels\n//\n\n.form-label {\n margin-bottom: $form-label-margin-bottom;\n @include font-size($form-label-font-size);\n font-style: $form-label-font-style;\n font-weight: $form-label-font-weight;\n color: $form-label-color;\n}\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: add($input-padding-y, $input-border-width);\n padding-bottom: add($input-padding-y, $input-border-width);\n margin-bottom: 0; // Override the `<legend>` default\n @include font-size(inherit); // Override the `<legend>` default\n font-style: $form-label-font-style;\n font-weight: $form-label-font-weight;\n line-height: $input-line-height;\n color: $form-label-color;\n}\n\n.col-form-label-lg {\n padding-top: add($input-padding-y-lg, $input-border-width);\n padding-bottom: add($input-padding-y-lg, $input-border-width);\n @include font-size($input-font-size-lg);\n}\n\n.col-form-label-sm {\n padding-top: add($input-padding-y-sm, $input-border-width);\n padding-bottom: add($input-padding-y-sm, $input-border-width);\n @include font-size($input-font-size-sm);\n}\n","//\n// Form text\n//\n\n.form-text {\n margin-top: $form-text-margin-top;\n @include font-size($form-text-font-size);\n font-style: $form-text-font-style;\n font-weight: $form-text-font-weight;\n color: $form-text-color;\n}\n","//\n// General form controls (plus a few specific high-level interventions)\n//\n\n.form-control {\n display: block;\n width: 100%;\n padding: $input-padding-y $input-padding-x;\n font-family: $input-font-family;\n @include font-size($input-font-size);\n font-weight: $input-font-weight;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n appearance: none; // Fix appearance for date inputs in Safari\n\n // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.\n @include border-radius($input-border-radius, 0);\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n &[type=\"file\"] {\n overflow: hidden; // prevent pseudo element button overlap\n\n &:not(:disabled):not([readonly]) {\n cursor: pointer;\n }\n }\n\n // Customize the `:focus` state to imitate native WebKit styles.\n &:focus {\n color: $input-focus-color;\n background-color: $input-focus-bg;\n border-color: $input-focus-border-color;\n outline: 0;\n @if $enable-shadows {\n @include box-shadow($input-box-shadow, $input-focus-box-shadow);\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: $input-focus-box-shadow;\n }\n }\n\n // Add some height to date inputs on iOS\n // https://github.com/twbs/bootstrap/issues/23307\n // TODO: we can remove this workaround once https://bugs.webkit.org/show_bug.cgi?id=198959 is resolved\n &::-webkit-date-and-time-value {\n // Multiply line-height by 1em if it has no unit\n height: if(unit($input-line-height) == \"\", $input-line-height * 1em, $input-line-height);\n }\n\n // Placeholder\n &::placeholder {\n color: $input-placeholder-color;\n // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.\n opacity: 1;\n }\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &:disabled,\n &[readonly] {\n background-color: $input-disabled-bg;\n border-color: $input-disabled-border-color;\n // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.\n opacity: 1;\n }\n\n // File input buttons theming\n &::file-selector-button {\n padding: $input-padding-y $input-padding-x;\n margin: (-$input-padding-y) (-$input-padding-x);\n margin-inline-end: $input-padding-x;\n color: $form-file-button-color;\n @include gradient-bg($form-file-button-bg);\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: $input-border-width;\n border-radius: 0; // stylelint-disable-line property-disallowed-list\n @include transition($btn-transition);\n }\n\n &:hover:not(:disabled):not([readonly])::file-selector-button {\n background-color: $form-file-button-hover-bg;\n }\n\n &::-webkit-file-upload-button {\n padding: $input-padding-y $input-padding-x;\n margin: (-$input-padding-y) (-$input-padding-x);\n margin-inline-end: $input-padding-x;\n color: $form-file-button-color;\n @include gradient-bg($form-file-button-bg);\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: $input-border-width;\n border-radius: 0; // stylelint-disable-line property-disallowed-list\n @include transition($btn-transition);\n }\n\n &:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {\n background-color: $form-file-button-hover-bg;\n }\n}\n\n// Readonly controls as plain text\n//\n// Apply class to a readonly input to make it appear like regular plain\n// text (without any border, background color, focus indicator)\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding: $input-padding-y 0;\n margin-bottom: 0; // match inputs if this class comes on inputs with default margins\n line-height: $input-line-height;\n color: $input-plaintext-color;\n background-color: transparent;\n border: solid transparent;\n border-width: $input-border-width 0;\n\n &.form-control-sm,\n &.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// Repeated in `_input_group.scss` to avoid Sass extend issues.\n\n.form-control-sm {\n min-height: $input-height-sm;\n padding: $input-padding-y-sm $input-padding-x-sm;\n @include font-size($input-font-size-sm);\n @include border-radius($input-border-radius-sm);\n\n &::file-selector-button {\n padding: $input-padding-y-sm $input-padding-x-sm;\n margin: (-$input-padding-y-sm) (-$input-padding-x-sm);\n margin-inline-end: $input-padding-x-sm;\n }\n\n &::-webkit-file-upload-button {\n padding: $input-padding-y-sm $input-padding-x-sm;\n margin: (-$input-padding-y-sm) (-$input-padding-x-sm);\n margin-inline-end: $input-padding-x-sm;\n }\n}\n\n.form-control-lg {\n min-height: $input-height-lg;\n padding: $input-padding-y-lg $input-padding-x-lg;\n @include font-size($input-font-size-lg);\n @include border-radius($input-border-radius-lg);\n\n &::file-selector-button {\n padding: $input-padding-y-lg $input-padding-x-lg;\n margin: (-$input-padding-y-lg) (-$input-padding-x-lg);\n margin-inline-end: $input-padding-x-lg;\n }\n\n &::-webkit-file-upload-button {\n padding: $input-padding-y-lg $input-padding-x-lg;\n margin: (-$input-padding-y-lg) (-$input-padding-x-lg);\n margin-inline-end: $input-padding-x-lg;\n }\n}\n\n// Make sure textareas don't shrink too much when resized\n// https://github.com/twbs/bootstrap/pull/29124\n// stylelint-disable selector-no-qualifying-type\ntextarea {\n &.form-control {\n min-height: $input-height;\n }\n\n &.form-control-sm {\n min-height: $input-height-sm;\n }\n\n &.form-control-lg {\n min-height: $input-height-lg;\n }\n}\n// stylelint-enable selector-no-qualifying-type\n\n.form-control-color {\n width: $form-color-width;\n height: auto; // Override fixed browser height\n padding: $input-padding-y;\n\n &:not(:disabled):not([readonly]) {\n cursor: pointer;\n }\n\n &::-moz-color-swatch {\n height: if(unit($input-line-height) == \"\", $input-line-height * 1em, $input-line-height);\n @include border-radius($input-border-radius);\n }\n\n &::-webkit-color-swatch {\n height: if(unit($input-line-height) == \"\", $input-line-height * 1em, $input-line-height);\n @include border-radius($input-border-radius);\n }\n}\n","// stylelint-disable property-disallowed-list\n@mixin transition($transition...) {\n @if length($transition) == 0 {\n $transition: $transition-base;\n }\n\n @if length($transition) > 1 {\n @each $value in $transition {\n @if $value == null or $value == none {\n @warn \"The keyword 'none' or 'null' must be used as a single argument.\";\n }\n }\n }\n\n @if $enable-transitions {\n @if nth($transition, 1) != null {\n transition: $transition;\n }\n\n @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n }\n }\n}\n","// Gradients\n\n// scss-docs-start gradient-bg-mixin\n@mixin gradient-bg($color: null) {\n background-color: $color;\n\n @if $enable-gradients {\n background-image: var(--#{$variable-prefix}gradient);\n }\n}\n// scss-docs-end gradient-bg-mixin\n\n// scss-docs-start gradient-mixins\n// Horizontal gradient, from left to right\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {\n background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);\n}\n\n// Vertical gradient, from top to bottom\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) {\n background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);\n}\n\n@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {\n background-image: linear-gradient($deg, $start-color, $end-color);\n}\n\n@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);\n}\n\n@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);\n}\n\n@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {\n background-image: radial-gradient(circle, $inner-color, $outer-color);\n}\n\n@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {\n background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);\n}\n// scss-docs-end gradient-mixins\n","// Select\n//\n// Replaces the browser default select with a custom one, mostly pulled from\n// https://primer.github.io/.\n\n.form-select {\n display: block;\n width: 100%;\n padding: $form-select-padding-y $form-select-indicator-padding $form-select-padding-y $form-select-padding-x;\n // stylelint-disable-next-line property-no-vendor-prefix\n -moz-padding-start: subtract($form-select-padding-x, 3px); // See https://github.com/twbs/bootstrap/issues/32636\n font-family: $form-select-font-family;\n @include font-size($form-select-font-size);\n font-weight: $form-select-font-weight;\n line-height: $form-select-line-height;\n color: $form-select-color;\n background-color: $form-select-bg;\n background-image: escape-svg($form-select-indicator);\n background-repeat: no-repeat;\n background-position: $form-select-bg-position;\n background-size: $form-select-bg-size;\n border: $form-select-border-width solid $form-select-border-color;\n @include border-radius($form-select-border-radius, 0);\n @include box-shadow($form-select-box-shadow);\n @include transition($form-select-transition);\n appearance: none;\n\n &:focus {\n border-color: $form-select-focus-border-color;\n outline: 0;\n @if $enable-shadows {\n @include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow);\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: $form-select-focus-box-shadow;\n }\n }\n\n &[multiple],\n &[size]:not([size=\"1\"]) {\n padding-right: $form-select-padding-x;\n background-image: none;\n }\n\n &:disabled {\n color: $form-select-disabled-color;\n background-color: $form-select-disabled-bg;\n border-color: $form-select-disabled-border-color;\n }\n\n // Remove outline from select box in FF\n &:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 $form-select-color;\n }\n}\n\n.form-select-sm {\n padding-top: $form-select-padding-y-sm;\n padding-bottom: $form-select-padding-y-sm;\n padding-left: $form-select-padding-x-sm;\n @include font-size($form-select-font-size-sm);\n}\n\n.form-select-lg {\n padding-top: $form-select-padding-y-lg;\n padding-bottom: $form-select-padding-y-lg;\n padding-left: $form-select-padding-x-lg;\n @include font-size($form-select-font-size-lg);\n}\n","//\n// Check/radio\n//\n\n.form-check {\n display: block;\n min-height: $form-check-min-height;\n padding-left: $form-check-padding-start;\n margin-bottom: $form-check-margin-bottom;\n\n .form-check-input {\n float: left;\n margin-left: $form-check-padding-start * -1;\n }\n}\n\n.form-check-input {\n width: $form-check-input-width;\n height: $form-check-input-width;\n margin-top: ($line-height-base - $form-check-input-width) * .5; // line-height minus check height\n vertical-align: top;\n background-color: $form-check-input-bg;\n background-repeat: no-repeat;\n background-position: center;\n background-size: contain;\n border: $form-check-input-border;\n appearance: none;\n color-adjust: exact; // Keep themed appearance for print\n @include transition($form-check-transition);\n\n &[type=\"checkbox\"] {\n @include border-radius($form-check-input-border-radius);\n }\n\n &[type=\"radio\"] {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: $form-check-radio-border-radius;\n }\n\n &:active {\n filter: $form-check-input-active-filter;\n }\n\n &:focus {\n border-color: $form-check-input-focus-border;\n outline: 0;\n box-shadow: $form-check-input-focus-box-shadow;\n }\n\n &:checked {\n background-color: $form-check-input-checked-bg-color;\n border-color: $form-check-input-checked-border-color;\n\n &[type=\"checkbox\"] {\n @if $enable-gradients {\n background-image: escape-svg($form-check-input-checked-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-check-input-checked-bg-image);\n }\n }\n\n &[type=\"radio\"] {\n @if $enable-gradients {\n background-image: escape-svg($form-check-radio-checked-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-check-radio-checked-bg-image);\n }\n }\n }\n\n &[type=\"checkbox\"]:indeterminate {\n background-color: $form-check-input-indeterminate-bg-color;\n border-color: $form-check-input-indeterminate-border-color;\n\n @if $enable-gradients {\n background-image: escape-svg($form-check-input-indeterminate-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-check-input-indeterminate-bg-image);\n }\n }\n\n &:disabled {\n pointer-events: none;\n filter: none;\n opacity: $form-check-input-disabled-opacity;\n }\n\n // Use disabled attribute in addition of :disabled pseudo-class\n // See: https://github.com/twbs/bootstrap/issues/28247\n &[disabled],\n &:disabled {\n ~ .form-check-label {\n opacity: $form-check-label-disabled-opacity;\n }\n }\n}\n\n.form-check-label {\n color: $form-check-label-color;\n cursor: $form-check-label-cursor;\n}\n\n//\n// Switch\n//\n\n.form-switch {\n padding-left: $form-switch-padding-start;\n\n .form-check-input {\n width: $form-switch-width;\n margin-left: $form-switch-padding-start * -1;\n background-image: escape-svg($form-switch-bg-image);\n background-position: left center;\n @include border-radius($form-switch-border-radius);\n @include transition($form-switch-transition);\n\n &:focus {\n background-image: escape-svg($form-switch-focus-bg-image);\n }\n\n &:checked {\n background-position: $form-switch-checked-bg-position;\n\n @if $enable-gradients {\n background-image: escape-svg($form-switch-checked-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-switch-checked-bg-image);\n }\n }\n }\n}\n\n.form-check-inline {\n display: inline-block;\n margin-right: $form-check-inline-margin-end;\n}\n\n.btn-check {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n\n &[disabled],\n &:disabled {\n + .btn {\n pointer-events: none;\n filter: none;\n opacity: $form-check-btn-check-disabled-opacity;\n }\n }\n}\n","// Range\n//\n// Style range inputs the same across browsers. Vendor-specific rules for pseudo\n// elements cannot be mixed. As such, there are no shared styles for focus or\n// active states on prefixed selectors.\n\n.form-range {\n width: 100%;\n height: add($form-range-thumb-height, $form-range-thumb-focus-box-shadow-width * 2);\n padding: 0; // Need to reset padding\n background-color: transparent;\n appearance: none;\n\n &:focus {\n outline: 0;\n\n // Pseudo-elements must be split across multiple rulesets to have an effect.\n // No box-shadow() mixin for focus accessibility.\n &::-webkit-slider-thumb { box-shadow: $form-range-thumb-focus-box-shadow; }\n &::-moz-range-thumb { box-shadow: $form-range-thumb-focus-box-shadow; }\n }\n\n &::-moz-focus-outer {\n border: 0;\n }\n\n &::-webkit-slider-thumb {\n width: $form-range-thumb-width;\n height: $form-range-thumb-height;\n margin-top: ($form-range-track-height - $form-range-thumb-height) * .5; // Webkit specific\n @include gradient-bg($form-range-thumb-bg);\n border: $form-range-thumb-border;\n @include border-radius($form-range-thumb-border-radius);\n @include box-shadow($form-range-thumb-box-shadow);\n @include transition($form-range-thumb-transition);\n appearance: none;\n\n &:active {\n @include gradient-bg($form-range-thumb-active-bg);\n }\n }\n\n &::-webkit-slider-runnable-track {\n width: $form-range-track-width;\n height: $form-range-track-height;\n color: transparent; // Why?\n cursor: $form-range-track-cursor;\n background-color: $form-range-track-bg;\n border-color: transparent;\n @include border-radius($form-range-track-border-radius);\n @include box-shadow($form-range-track-box-shadow);\n }\n\n &::-moz-range-thumb {\n width: $form-range-thumb-width;\n height: $form-range-thumb-height;\n @include gradient-bg($form-range-thumb-bg);\n border: $form-range-thumb-border;\n @include border-radius($form-range-thumb-border-radius);\n @include box-shadow($form-range-thumb-box-shadow);\n @include transition($form-range-thumb-transition);\n appearance: none;\n\n &:active {\n @include gradient-bg($form-range-thumb-active-bg);\n }\n }\n\n &::-moz-range-track {\n width: $form-range-track-width;\n height: $form-range-track-height;\n color: transparent;\n cursor: $form-range-track-cursor;\n background-color: $form-range-track-bg;\n border-color: transparent; // Firefox specific?\n @include border-radius($form-range-track-border-radius);\n @include box-shadow($form-range-track-box-shadow);\n }\n\n &:disabled {\n pointer-events: none;\n\n &::-webkit-slider-thumb {\n background-color: $form-range-thumb-disabled-bg;\n }\n\n &::-moz-range-thumb {\n background-color: $form-range-thumb-disabled-bg;\n }\n }\n}\n",".form-floating {\n position: relative;\n\n > .form-control,\n > .form-select {\n height: $form-floating-height;\n line-height: $form-floating-line-height;\n }\n\n > label {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%; // allow textareas\n padding: $form-floating-padding-y $form-floating-padding-x;\n pointer-events: none;\n border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model\n transform-origin: 0 0;\n @include transition($form-floating-transition);\n }\n\n // stylelint-disable no-duplicate-selectors\n > .form-control {\n padding: $form-floating-padding-y $form-floating-padding-x;\n\n &::placeholder {\n color: transparent;\n }\n\n &:focus,\n &:not(:placeholder-shown) {\n padding-top: $form-floating-input-padding-t;\n padding-bottom: $form-floating-input-padding-b;\n }\n // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped\n &:-webkit-autofill {\n padding-top: $form-floating-input-padding-t;\n padding-bottom: $form-floating-input-padding-b;\n }\n }\n\n > .form-select {\n padding-top: $form-floating-input-padding-t;\n padding-bottom: $form-floating-input-padding-b;\n }\n\n > .form-control:focus,\n > .form-control:not(:placeholder-shown),\n > .form-select {\n ~ label {\n opacity: $form-floating-label-opacity;\n transform: $form-floating-label-transform;\n }\n }\n // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped\n > .form-control:-webkit-autofill {\n ~ label {\n opacity: $form-floating-label-opacity;\n transform: $form-floating-label-transform;\n }\n }\n // stylelint-enable no-duplicate-selectors\n}\n","//\n// Base styles\n//\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap; // For form validation feedback\n align-items: stretch;\n width: 100%;\n\n > .form-control,\n > .form-select {\n position: relative; // For focus state's z-index\n flex: 1 1 auto;\n width: 1%;\n min-width: 0; // https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size\n }\n\n // Bring the \"active\" form control to the top of surrounding elements\n > .form-control:focus,\n > .form-select:focus {\n z-index: 3;\n }\n\n // Ensure buttons are always above inputs for more visually pleasing borders.\n // This isn't needed for `.input-group-text` since it shares the same border-color\n // as our inputs.\n .btn {\n position: relative;\n z-index: 2;\n\n &:focus {\n z-index: 3;\n }\n }\n}\n\n\n// Textual addons\n//\n// Serves as a catch-all element for any text or radio/checkbox input you wish\n// to prepend or append to an input.\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: $input-group-addon-padding-y $input-group-addon-padding-x;\n @include font-size($input-font-size); // Match inputs\n font-weight: $input-group-addon-font-weight;\n line-height: $input-line-height;\n color: $input-group-addon-color;\n text-align: center;\n white-space: nowrap;\n background-color: $input-group-addon-bg;\n border: $input-border-width solid $input-group-addon-border-color;\n @include border-radius($input-border-radius);\n}\n\n\n// Sizing\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .form-select,\n.input-group-lg > .input-group-text,\n.input-group-lg > .btn {\n padding: $input-padding-y-lg $input-padding-x-lg;\n @include font-size($input-font-size-lg);\n @include border-radius($input-border-radius-lg);\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .form-select,\n.input-group-sm > .input-group-text,\n.input-group-sm > .btn {\n padding: $input-padding-y-sm $input-padding-x-sm;\n @include font-size($input-font-size-sm);\n @include border-radius($input-border-radius-sm);\n}\n\n.input-group-lg > .form-select,\n.input-group-sm > .form-select {\n padding-right: $form-select-padding-x + $form-select-indicator-padding;\n}\n\n\n// Rounded corners\n//\n// These rulesets must come after the sizing ones to properly override sm and lg\n// border-radius values when extending. They're more specific than we'd like\n// with the `.input-group >` part, but without it, we cannot override the sizing.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.input-group {\n &:not(.has-validation) {\n > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),\n > .dropdown-toggle:nth-last-child(n + 3) {\n @include border-end-radius(0);\n }\n }\n\n &.has-validation {\n > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),\n > .dropdown-toggle:nth-last-child(n + 4) {\n @include border-end-radius(0);\n }\n }\n\n $validation-messages: \"\";\n @each $state in map-keys($form-validation-states) {\n $validation-messages: $validation-messages + \":not(.\" + unquote($state) + \"-tooltip)\" + \":not(.\" + unquote($state) + \"-feedback)\";\n }\n\n > :not(:first-child):not(.dropdown-menu)#{$validation-messages} {\n margin-left: -$input-border-width;\n @include border-start-radius(0);\n }\n}\n","// This mixin uses an `if()` technique to be compatible with Dart Sass\n// See https://github.com/sass/sass/issues/1873#issuecomment-152293725 for more details\n\n// scss-docs-start form-validation-mixins\n@mixin form-validation-state-selector($state) {\n @if ($state == \"valid\" or $state == \"invalid\") {\n .was-validated #{if(&, \"&\", \"\")}:#{$state},\n #{if(&, \"&\", \"\")}.is-#{$state} {\n @content;\n }\n } @else {\n #{if(&, \"&\", \"\")}.is-#{$state} {\n @content;\n }\n }\n}\n\n@mixin form-validation-state(\n $state,\n $color,\n $icon,\n $tooltip-color: color-contrast($color),\n $tooltip-bg-color: rgba($color, $form-feedback-tooltip-opacity),\n $focus-box-shadow: 0 0 $input-btn-focus-blur $input-focus-width rgba($color, $input-btn-focus-color-opacity)\n) {\n .#{$state}-feedback {\n display: none;\n width: 100%;\n margin-top: $form-feedback-margin-top;\n @include font-size($form-feedback-font-size);\n font-style: $form-feedback-font-style;\n color: $color;\n }\n\n .#{$state}-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%; // Contain to parent when possible\n padding: $form-feedback-tooltip-padding-y $form-feedback-tooltip-padding-x;\n margin-top: .1rem;\n @include font-size($form-feedback-tooltip-font-size);\n line-height: $form-feedback-tooltip-line-height;\n color: $tooltip-color;\n background-color: $tooltip-bg-color;\n @include border-radius($form-feedback-tooltip-border-radius);\n }\n\n @include form-validation-state-selector($state) {\n ~ .#{$state}-feedback,\n ~ .#{$state}-tooltip {\n display: block;\n }\n }\n\n .form-control {\n @include form-validation-state-selector($state) {\n border-color: $color;\n\n @if $enable-validation-icons {\n padding-right: $input-height-inner;\n background-image: escape-svg($icon);\n background-repeat: no-repeat;\n background-position: right $input-height-inner-quarter center;\n background-size: $input-height-inner-half $input-height-inner-half;\n }\n\n &:focus {\n border-color: $color;\n box-shadow: $focus-box-shadow;\n }\n }\n }\n\n // stylelint-disable-next-line selector-no-qualifying-type\n textarea.form-control {\n @include form-validation-state-selector($state) {\n @if $enable-validation-icons {\n padding-right: $input-height-inner;\n background-position: top $input-height-inner-quarter right $input-height-inner-quarter;\n }\n }\n }\n\n .form-select {\n @include form-validation-state-selector($state) {\n border-color: $color;\n\n @if $enable-validation-icons {\n &:not([multiple]):not([size]),\n &:not([multiple])[size=\"1\"] {\n padding-right: $form-select-feedback-icon-padding-end;\n background-image: escape-svg($form-select-indicator), escape-svg($icon);\n background-position: $form-select-bg-position, $form-select-feedback-icon-position;\n background-size: $form-select-bg-size, $form-select-feedback-icon-size;\n }\n }\n\n &:focus {\n border-color: $color;\n box-shadow: $focus-box-shadow;\n }\n }\n }\n\n .form-check-input {\n @include form-validation-state-selector($state) {\n border-color: $color;\n\n &:checked {\n background-color: $color;\n }\n\n &:focus {\n box-shadow: $focus-box-shadow;\n }\n\n ~ .form-check-label {\n color: $color;\n }\n }\n }\n .form-check-inline .form-check-input {\n ~ .#{$state}-feedback {\n margin-left: .5em;\n }\n }\n\n .input-group .form-control,\n .input-group .form-select {\n @include form-validation-state-selector($state) {\n @if $state == \"valid\" {\n z-index: 1;\n } @else if $state == \"invalid\" {\n z-index: 2;\n }\n &:focus {\n z-index: 3;\n }\n }\n }\n}\n// scss-docs-end form-validation-mixins\n","//\n// Base styles\n//\n\n.btn {\n display: inline-block;\n font-family: $btn-font-family;\n font-weight: $btn-font-weight;\n line-height: $btn-line-height;\n color: $body-color;\n text-align: center;\n text-decoration: if($link-decoration == none, null, none);\n white-space: $btn-white-space;\n vertical-align: middle;\n cursor: if($enable-button-pointers, pointer, null);\n user-select: none;\n background-color: transparent;\n border: $btn-border-width solid transparent;\n @include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-border-radius);\n @include transition($btn-transition);\n\n &:hover {\n color: $body-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n\n .btn-check:focus + &,\n &:focus {\n outline: 0;\n box-shadow: $btn-focus-box-shadow;\n }\n\n .btn-check:checked + &,\n .btn-check:active + &,\n &:active,\n &.active {\n @include box-shadow($btn-active-box-shadow);\n\n &:focus {\n @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);\n }\n }\n\n &:disabled,\n &.disabled,\n fieldset:disabled & {\n pointer-events: none;\n opacity: $btn-disabled-opacity;\n @include box-shadow(none);\n }\n}\n\n\n//\n// Alternate buttons\n//\n\n// scss-docs-start btn-variant-loops\n@each $color, $value in $theme-colors {\n .btn-#{$color} {\n @include button-variant($value, $value);\n }\n}\n\n@each $color, $value in $theme-colors {\n .btn-outline-#{$color} {\n @include button-outline-variant($value);\n }\n}\n// scss-docs-end btn-variant-loops\n\n\n//\n// Link buttons\n//\n\n// Make a button look and behave like a link\n.btn-link {\n font-weight: $font-weight-normal;\n color: $btn-link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $btn-link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n\n &:focus {\n text-decoration: $link-hover-decoration;\n }\n\n &:disabled,\n &.disabled {\n color: $btn-link-disabled-color;\n }\n\n // No need for an active state here\n}\n\n\n//\n// Button Sizes\n//\n\n.btn-lg {\n @include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-lg, $btn-border-radius-lg);\n}\n\n.btn-sm {\n @include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-border-radius-sm);\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n// scss-docs-start btn-variant-mixin\n@mixin button-variant(\n $background,\n $border,\n $color: color-contrast($background),\n $hover-background: if($color == $color-contrast-light, shade-color($background, $btn-hover-bg-shade-amount), tint-color($background, $btn-hover-bg-tint-amount)),\n $hover-border: if($color == $color-contrast-light, shade-color($border, $btn-hover-border-shade-amount), tint-color($border, $btn-hover-border-tint-amount)),\n $hover-color: color-contrast($hover-background),\n $active-background: if($color == $color-contrast-light, shade-color($background, $btn-active-bg-shade-amount), tint-color($background, $btn-active-bg-tint-amount)),\n $active-border: if($color == $color-contrast-light, shade-color($border, $btn-active-border-shade-amount), tint-color($border, $btn-active-border-tint-amount)),\n $active-color: color-contrast($active-background),\n $disabled-background: $background,\n $disabled-border: $border,\n $disabled-color: color-contrast($disabled-background)\n) {\n color: $color;\n @include gradient-bg($background);\n border-color: $border;\n @include box-shadow($btn-box-shadow);\n\n &:hover {\n color: $hover-color;\n @include gradient-bg($hover-background);\n border-color: $hover-border;\n }\n\n .btn-check:focus + &,\n &:focus {\n color: $hover-color;\n @include gradient-bg($hover-background);\n border-color: $hover-border;\n @if $enable-shadows {\n @include box-shadow($btn-box-shadow, 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5));\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5);\n }\n }\n\n .btn-check:checked + &,\n .btn-check:active + &,\n &:active,\n &.active,\n .show > &.dropdown-toggle {\n color: $active-color;\n background-color: $active-background;\n // Remove CSS gradients if they're enabled\n background-image: if($enable-gradients, none, null);\n border-color: $active-border;\n\n &:focus {\n @if $enable-shadows {\n @include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5));\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5);\n }\n }\n }\n\n &:disabled,\n &.disabled {\n color: $disabled-color;\n background-color: $disabled-background;\n // Remove CSS gradients if they're enabled\n background-image: if($enable-gradients, none, null);\n border-color: $disabled-border;\n }\n}\n// scss-docs-end btn-variant-mixin\n\n// scss-docs-start btn-outline-variant-mixin\n@mixin button-outline-variant(\n $color,\n $color-hover: color-contrast($color),\n $active-background: $color,\n $active-border: $color,\n $active-color: color-contrast($active-background)\n) {\n color: $color;\n border-color: $color;\n\n &:hover {\n color: $color-hover;\n background-color: $active-background;\n border-color: $active-border;\n }\n\n .btn-check:focus + &,\n &:focus {\n box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n }\n\n .btn-check:checked + &,\n .btn-check:active + &,\n &:active,\n &.active,\n &.dropdown-toggle.show {\n color: $active-color;\n background-color: $active-background;\n border-color: $active-border;\n\n &:focus {\n @if $enable-shadows {\n @include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5));\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n }\n }\n }\n\n &:disabled,\n &.disabled {\n color: $color;\n background-color: transparent;\n }\n}\n// scss-docs-end btn-outline-variant-mixin\n\n// scss-docs-start btn-size-mixin\n@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n // Manually declare to provide an override to the browser default\n @include border-radius($border-radius, 0);\n}\n// scss-docs-end btn-size-mixin\n",".fade {\n @include transition($transition-fade);\n\n &:not(.show) {\n opacity: 0;\n }\n}\n\n// scss-docs-start collapse-classes\n.collapse {\n &:not(.show) {\n display: none;\n }\n}\n\n.collapsing {\n height: 0;\n overflow: hidden;\n @include transition($transition-collapse);\n\n &.collapse-horizontal {\n width: 0;\n height: auto;\n @include transition($transition-collapse-width);\n }\n}\n// scss-docs-end collapse-classes\n","// The dropdown wrapper (`<div>`)\n.dropup,\n.dropend,\n.dropdown,\n.dropstart {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n\n // Generate the caret automatically\n @include caret();\n}\n\n// The dropdown menu\n.dropdown-menu {\n position: absolute;\n z-index: $zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n min-width: $dropdown-min-width;\n padding: $dropdown-padding-y $dropdown-padding-x;\n margin: 0; // Override default margin of ul\n @include font-size($dropdown-font-size);\n color: $dropdown-color;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n list-style: none;\n background-color: $dropdown-bg;\n background-clip: padding-box;\n border: $dropdown-border-width solid $dropdown-border-color;\n @include border-radius($dropdown-border-radius);\n @include box-shadow($dropdown-box-shadow);\n\n &[data-bs-popper] {\n top: 100%;\n left: 0;\n margin-top: $dropdown-spacer;\n }\n}\n\n// scss-docs-start responsive-breakpoints\n// We deliberately hardcode the `bs-` prefix because we check\n// this custom property in JS to determine Popper's positioning\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .dropdown-menu#{$infix}-start {\n --bs-position: start;\n\n &[data-bs-popper] {\n right: auto;\n left: 0;\n }\n }\n\n .dropdown-menu#{$infix}-end {\n --bs-position: end;\n\n &[data-bs-popper] {\n right: 0;\n left: auto;\n }\n }\n }\n}\n// scss-docs-end responsive-breakpoints\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n// Just add .dropup after the standard .dropdown class and you're set.\n.dropup {\n .dropdown-menu[data-bs-popper] {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: $dropdown-spacer;\n }\n\n .dropdown-toggle {\n @include caret(up);\n }\n}\n\n.dropend {\n .dropdown-menu[data-bs-popper] {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: $dropdown-spacer;\n }\n\n .dropdown-toggle {\n @include caret(end);\n &::after {\n vertical-align: 0;\n }\n }\n}\n\n.dropstart {\n .dropdown-menu[data-bs-popper] {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: $dropdown-spacer;\n }\n\n .dropdown-toggle {\n @include caret(start);\n &::before {\n vertical-align: 0;\n }\n }\n}\n\n\n// Dividers (basically an `<hr>`) within the dropdown\n.dropdown-divider {\n height: 0;\n margin: $dropdown-divider-margin-y 0;\n overflow: hidden;\n border-top: 1px solid $dropdown-divider-bg;\n}\n\n// Links, buttons, and more within the dropdown menu\n//\n// `<button>`-specific styles are denoted with `// For <button>s`\n.dropdown-item {\n display: block;\n width: 100%; // For `<button>`s\n padding: $dropdown-item-padding-y $dropdown-item-padding-x;\n clear: both;\n font-weight: $font-weight-normal;\n color: $dropdown-link-color;\n text-align: inherit; // For `<button>`s\n text-decoration: if($link-decoration == none, null, none);\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n background-color: transparent; // For `<button>`s\n border: 0; // For `<button>`s\n\n // Prevent dropdown overflow if there's no padding\n // See https://github.com/twbs/bootstrap/pull/27703\n @if $dropdown-padding-y == 0 {\n &:first-child {\n @include border-top-radius($dropdown-inner-border-radius);\n }\n\n &:last-child {\n @include border-bottom-radius($dropdown-inner-border-radius);\n }\n }\n\n &:hover,\n &:focus {\n color: $dropdown-link-hover-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n @include gradient-bg($dropdown-link-hover-bg);\n }\n\n &.active,\n &:active {\n color: $dropdown-link-active-color;\n text-decoration: none;\n @include gradient-bg($dropdown-link-active-bg);\n }\n\n &.disabled,\n &:disabled {\n color: $dropdown-link-disabled-color;\n pointer-events: none;\n background-color: transparent;\n // Remove CSS gradients if they're enabled\n background-image: if($enable-gradients, none, null);\n }\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: $dropdown-header-padding;\n margin-bottom: 0; // for use with heading elements\n @include font-size($font-size-sm);\n color: $dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Dropdown text\n.dropdown-item-text {\n display: block;\n padding: $dropdown-item-padding-y $dropdown-item-padding-x;\n color: $dropdown-link-color;\n}\n\n// Dark dropdowns\n.dropdown-menu-dark {\n color: $dropdown-dark-color;\n background-color: $dropdown-dark-bg;\n border-color: $dropdown-dark-border-color;\n @include box-shadow($dropdown-dark-box-shadow);\n\n .dropdown-item {\n color: $dropdown-dark-link-color;\n\n &:hover,\n &:focus {\n color: $dropdown-dark-link-hover-color;\n @include gradient-bg($dropdown-dark-link-hover-bg);\n }\n\n &.active,\n &:active {\n color: $dropdown-dark-link-active-color;\n @include gradient-bg($dropdown-dark-link-active-bg);\n }\n\n &.disabled,\n &:disabled {\n color: $dropdown-dark-link-disabled-color;\n }\n }\n\n .dropdown-divider {\n border-color: $dropdown-dark-divider-bg;\n }\n\n .dropdown-item-text {\n color: $dropdown-dark-link-color;\n }\n\n .dropdown-header {\n color: $dropdown-dark-header-color;\n }\n}\n","// scss-docs-start caret-mixins\n@mixin caret-down {\n border-top: $caret-width solid;\n border-right: $caret-width solid transparent;\n border-bottom: 0;\n border-left: $caret-width solid transparent;\n}\n\n@mixin caret-up {\n border-top: 0;\n border-right: $caret-width solid transparent;\n border-bottom: $caret-width solid;\n border-left: $caret-width solid transparent;\n}\n\n@mixin caret-end {\n border-top: $caret-width solid transparent;\n border-right: 0;\n border-bottom: $caret-width solid transparent;\n border-left: $caret-width solid;\n}\n\n@mixin caret-start {\n border-top: $caret-width solid transparent;\n border-right: $caret-width solid;\n border-bottom: $caret-width solid transparent;\n}\n\n@mixin caret($direction: down) {\n @if $enable-caret {\n &::after {\n display: inline-block;\n margin-left: $caret-spacing;\n vertical-align: $caret-vertical-align;\n content: \"\";\n @if $direction == down {\n @include caret-down();\n } @else if $direction == up {\n @include caret-up();\n } @else if $direction == end {\n @include caret-end();\n }\n }\n\n @if $direction == start {\n &::after {\n display: none;\n }\n\n &::before {\n display: inline-block;\n margin-right: $caret-spacing;\n vertical-align: $caret-vertical-align;\n content: \"\";\n @include caret-start();\n }\n }\n\n &:empty::after {\n margin-left: 0;\n }\n }\n}\n// scss-docs-end caret-mixins\n","// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle; // match .btn alignment given font-size hack above\n\n > .btn {\n position: relative;\n flex: 1 1 auto;\n }\n\n // Bring the hover, focused, and \"active\" buttons to the front to overlay\n // the borders properly\n > .btn-check:checked + .btn,\n > .btn-check:focus + .btn,\n > .btn:hover,\n > .btn:focus,\n > .btn:active,\n > .btn.active {\n z-index: 1;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n\n .input-group {\n width: auto;\n }\n}\n\n.btn-group {\n // Prevent double borders when buttons are next to each other\n > .btn:not(:first-child),\n > .btn-group:not(:first-child) {\n margin-left: -$btn-border-width;\n }\n\n // Reset rounded corners\n > .btn:not(:last-child):not(.dropdown-toggle),\n > .btn-group:not(:last-child) > .btn {\n @include border-end-radius(0);\n }\n\n // The left radius should be 0 if the button is:\n // - the \"third or more\" child\n // - the second child and the previous element isn't `.btn-check` (making it the first child visually)\n // - part of a btn-group which isn't the first child\n > .btn:nth-child(n + 3),\n > :not(.btn-check) + .btn,\n > .btn-group:not(:first-child) > .btn {\n @include border-start-radius(0);\n }\n}\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-sm > .btn { @extend .btn-sm; }\n.btn-group-lg > .btn { @extend .btn-lg; }\n\n\n//\n// Split button dropdowns\n//\n\n.dropdown-toggle-split {\n padding-right: $btn-padding-x * .75;\n padding-left: $btn-padding-x * .75;\n\n &::after,\n .dropup &::after,\n .dropend &::after {\n margin-left: 0;\n }\n\n .dropstart &::before {\n margin-right: 0;\n }\n}\n\n.btn-sm + .dropdown-toggle-split {\n padding-right: $btn-padding-x-sm * .75;\n padding-left: $btn-padding-x-sm * .75;\n}\n\n.btn-lg + .dropdown-toggle-split {\n padding-right: $btn-padding-x-lg * .75;\n padding-left: $btn-padding-x-lg * .75;\n}\n\n\n// The clickable button for toggling the menu\n// Set the same inset shadow as the :active state\n.btn-group.show .dropdown-toggle {\n @include box-shadow($btn-active-box-shadow);\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n @include box-shadow(none);\n }\n}\n\n\n//\n// Vertical button groups\n//\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n\n > .btn,\n > .btn-group {\n width: 100%;\n }\n\n > .btn:not(:first-child),\n > .btn-group:not(:first-child) {\n margin-top: -$btn-border-width;\n }\n\n // Reset rounded corners\n > .btn:not(:last-child):not(.dropdown-toggle),\n > .btn-group:not(:last-child) > .btn {\n @include border-bottom-radius(0);\n }\n\n > .btn ~ .btn,\n > .btn-group:not(:first-child) > .btn {\n @include border-top-radius(0);\n }\n}\n","// Base class\n//\n// Kickstart any navigation component with a set of style resets. Works with\n// `<nav>`s, `<ul>`s or `<ol>`s.\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: $nav-link-padding-y $nav-link-padding-x;\n @include font-size($nav-link-font-size);\n font-weight: $nav-link-font-weight;\n color: $nav-link-color;\n text-decoration: if($link-decoration == none, null, none);\n @include transition($nav-link-transition);\n\n &:hover,\n &:focus {\n color: $nav-link-hover-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n\n // Disabled state lightens text\n &.disabled {\n color: $nav-link-disabled-color;\n pointer-events: none;\n cursor: default;\n }\n}\n\n//\n// Tabs\n//\n\n.nav-tabs {\n border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;\n\n .nav-link {\n margin-bottom: -$nav-tabs-border-width;\n background: none;\n border: $nav-tabs-border-width solid transparent;\n @include border-top-radius($nav-tabs-border-radius);\n\n &:hover,\n &:focus {\n border-color: $nav-tabs-link-hover-border-color;\n // Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link\n isolation: isolate;\n }\n\n &.disabled {\n color: $nav-link-disabled-color;\n background-color: transparent;\n border-color: transparent;\n }\n }\n\n .nav-link.active,\n .nav-item.show .nav-link {\n color: $nav-tabs-link-active-color;\n background-color: $nav-tabs-link-active-bg;\n border-color: $nav-tabs-link-active-border-color;\n }\n\n .dropdown-menu {\n // Make dropdown border overlap tab border\n margin-top: -$nav-tabs-border-width;\n // Remove the top rounded corners here since there is a hard edge above the menu\n @include border-top-radius(0);\n }\n}\n\n\n//\n// Pills\n//\n\n.nav-pills {\n .nav-link {\n background: none;\n border: 0;\n @include border-radius($nav-pills-border-radius);\n }\n\n .nav-link.active,\n .show > .nav-link {\n color: $nav-pills-link-active-color;\n @include gradient-bg($nav-pills-link-active-bg);\n }\n}\n\n\n//\n// Justified variants\n//\n\n.nav-fill {\n > .nav-link,\n .nav-item {\n flex: 1 1 auto;\n text-align: center;\n }\n}\n\n.nav-justified {\n > .nav-link,\n .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n }\n}\n\n.nav-fill,\n.nav-justified {\n .nav-item .nav-link {\n width: 100%; // Make sure button will grow\n }\n}\n\n\n// Tabbable tabs\n//\n// Hide tabbable panes to start, show them when `.active`\n\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n","// Contents\n//\n// Navbar\n// Navbar brand\n// Navbar nav\n// Navbar text\n// Responsive navbar\n// Navbar position\n// Navbar themes\n\n\n// Navbar\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap; // allow us to do the line break for collapsing content\n align-items: center;\n justify-content: space-between; // space out brand from logo\n padding-top: $navbar-padding-y;\n padding-right: $navbar-padding-x; // default: null\n padding-bottom: $navbar-padding-y;\n padding-left: $navbar-padding-x; // default: null\n @include gradient-bg();\n\n // Because flex properties aren't inherited, we need to redeclare these first\n // few properties so that content nested within behave properly.\n // The `flex-wrap` property is inherited to simplify the expanded navbars\n %container-flex-properties {\n display: flex;\n flex-wrap: inherit;\n align-items: center;\n justify-content: space-between;\n }\n\n > .container,\n > .container-fluid {\n @extend %container-flex-properties;\n }\n\n @each $breakpoint, $container-max-width in $container-max-widths {\n > .container#{breakpoint-infix($breakpoint, $container-max-widths)} {\n @extend %container-flex-properties;\n }\n }\n}\n\n\n// Navbar brand\n//\n// Used for brand, project, or site names.\n\n.navbar-brand {\n padding-top: $navbar-brand-padding-y;\n padding-bottom: $navbar-brand-padding-y;\n margin-right: $navbar-brand-margin-end;\n @include font-size($navbar-brand-font-size);\n text-decoration: if($link-decoration == none, null, none);\n white-space: nowrap;\n\n &:hover,\n &:focus {\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n}\n\n\n// Navbar nav\n//\n// Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).\n\n.navbar-nav {\n display: flex;\n flex-direction: column; // cannot use `inherit` to get the `.navbar`s value\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n\n .nav-link {\n padding-right: 0;\n padding-left: 0;\n }\n\n .dropdown-menu {\n position: static;\n }\n}\n\n\n// Navbar text\n//\n//\n\n.navbar-text {\n padding-top: $nav-link-padding-y;\n padding-bottom: $nav-link-padding-y;\n}\n\n\n// Responsive navbar\n//\n// Custom styles for responsive collapsing and toggling of navbar contents.\n// Powered by the collapse Bootstrap JavaScript plugin.\n\n// When collapsed, prevent the toggleable navbar contents from appearing in\n// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`\n// on the `.navbar` parent.\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n // For always expanded or extra full navbars, ensure content aligns itself\n // properly vertically. Can be easily overridden with flex utilities.\n align-items: center;\n}\n\n// Button for toggling the navbar when in its collapsed state\n.navbar-toggler {\n padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;\n @include font-size($navbar-toggler-font-size);\n line-height: 1;\n background-color: transparent; // remove default button style\n border: $border-width solid transparent; // remove default button style\n @include border-radius($navbar-toggler-border-radius);\n @include transition($navbar-toggler-transition);\n\n &:hover {\n text-decoration: none;\n }\n\n &:focus {\n text-decoration: none;\n outline: 0;\n box-shadow: 0 0 0 $navbar-toggler-focus-width;\n }\n}\n\n// Keep as a separate element so folks can easily override it with another icon\n// or image file as needed.\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n background-repeat: no-repeat;\n background-position: center;\n background-size: 100%;\n}\n\n.navbar-nav-scroll {\n max-height: var(--#{$variable-prefix}scroll-height, 75vh);\n overflow-y: auto;\n}\n\n// scss-docs-start navbar-expand-loop\n// Generate series of `.navbar-expand-*` responsive classes for configuring\n// where your navbar collapses.\n.navbar-expand {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n // stylelint-disable-next-line scss/selector-no-union-class-name\n &#{$infix} {\n @include media-breakpoint-up($next) {\n flex-wrap: nowrap;\n justify-content: flex-start;\n\n .navbar-nav {\n flex-direction: row;\n\n .dropdown-menu {\n position: absolute;\n }\n\n .nav-link {\n padding-right: $navbar-nav-link-padding-x;\n padding-left: $navbar-nav-link-padding-x;\n }\n }\n\n .navbar-nav-scroll {\n overflow: visible;\n }\n\n .navbar-collapse {\n display: flex !important; // stylelint-disable-line declaration-no-important\n flex-basis: auto;\n }\n\n .navbar-toggler {\n display: none;\n }\n\n .offcanvas-header {\n display: none;\n }\n\n .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important; // stylelint-disable-line declaration-no-important\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n @include transition(none);\n transform: none;\n }\n .offcanvas-top,\n .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n\n .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n }\n }\n }\n}\n// scss-docs-end navbar-expand-loop\n\n// Navbar themes\n//\n// Styles for switching between navbars with light or dark background.\n\n// Dark links against a light background\n.navbar-light {\n .navbar-brand {\n color: $navbar-light-brand-color;\n\n &:hover,\n &:focus {\n color: $navbar-light-brand-hover-color;\n }\n }\n\n .navbar-nav {\n .nav-link {\n color: $navbar-light-color;\n\n &:hover,\n &:focus {\n color: $navbar-light-hover-color;\n }\n\n &.disabled {\n color: $navbar-light-disabled-color;\n }\n }\n\n .show > .nav-link,\n .nav-link.active {\n color: $navbar-light-active-color;\n }\n }\n\n .navbar-toggler {\n color: $navbar-light-color;\n border-color: $navbar-light-toggler-border-color;\n }\n\n .navbar-toggler-icon {\n background-image: escape-svg($navbar-light-toggler-icon-bg);\n }\n\n .navbar-text {\n color: $navbar-light-color;\n\n a,\n a:hover,\n a:focus {\n color: $navbar-light-active-color;\n }\n }\n}\n\n// White links against a dark background\n.navbar-dark {\n .navbar-brand {\n color: $navbar-dark-brand-color;\n\n &:hover,\n &:focus {\n color: $navbar-dark-brand-hover-color;\n }\n }\n\n .navbar-nav {\n .nav-link {\n color: $navbar-dark-color;\n\n &:hover,\n &:focus {\n color: $navbar-dark-hover-color;\n }\n\n &.disabled {\n color: $navbar-dark-disabled-color;\n }\n }\n\n .show > .nav-link,\n .nav-link.active {\n color: $navbar-dark-active-color;\n }\n }\n\n .navbar-toggler {\n color: $navbar-dark-color;\n border-color: $navbar-dark-toggler-border-color;\n }\n\n .navbar-toggler-icon {\n background-image: escape-svg($navbar-dark-toggler-icon-bg);\n }\n\n .navbar-text {\n color: $navbar-dark-color;\n a,\n a:hover,\n a:focus {\n color: $navbar-dark-active-color;\n }\n }\n}\n","//\n// Base styles\n//\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0; // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106\n height: $card-height;\n word-wrap: break-word;\n background-color: $card-bg;\n background-clip: border-box;\n border: $card-border-width solid $card-border-color;\n @include border-radius($card-border-radius);\n @include box-shadow($card-box-shadow);\n\n > hr {\n margin-right: 0;\n margin-left: 0;\n }\n\n > .list-group {\n border-top: inherit;\n border-bottom: inherit;\n\n &:first-child {\n border-top-width: 0;\n @include border-top-radius($card-inner-border-radius);\n }\n\n &:last-child {\n border-bottom-width: 0;\n @include border-bottom-radius($card-inner-border-radius);\n }\n }\n\n // Due to specificity of the above selector (`.card > .list-group`), we must\n // use a child selector here to prevent double borders.\n > .card-header + .list-group,\n > .list-group + .card-footer {\n border-top: 0;\n }\n}\n\n.card-body {\n // Enable `flex-grow: 1` for decks and groups so that card blocks take up\n // as much space as possible, ensuring footers are aligned to the bottom.\n flex: 1 1 auto;\n padding: $card-spacer-y $card-spacer-x;\n color: $card-color;\n}\n\n.card-title {\n margin-bottom: $card-title-spacer-y;\n}\n\n.card-subtitle {\n margin-top: -$card-title-spacer-y * .5;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link {\n &:hover {\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n\n + .card-link {\n margin-left: $card-spacer-x;\n }\n}\n\n//\n// Optional textual caps\n//\n\n.card-header {\n padding: $card-cap-padding-y $card-cap-padding-x;\n margin-bottom: 0; // Removes the default margin-bottom of <hN>\n color: $card-cap-color;\n background-color: $card-cap-bg;\n border-bottom: $card-border-width solid $card-border-color;\n\n &:first-child {\n @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);\n }\n}\n\n.card-footer {\n padding: $card-cap-padding-y $card-cap-padding-x;\n color: $card-cap-color;\n background-color: $card-cap-bg;\n border-top: $card-border-width solid $card-border-color;\n\n &:last-child {\n @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);\n }\n}\n\n\n//\n// Header navs\n//\n\n.card-header-tabs {\n margin-right: -$card-cap-padding-x * .5;\n margin-bottom: -$card-cap-padding-y;\n margin-left: -$card-cap-padding-x * .5;\n border-bottom: 0;\n\n @if $nav-tabs-link-active-bg != $card-bg {\n .nav-link.active {\n background-color: $card-bg;\n border-bottom-color: $card-bg;\n }\n }\n}\n\n.card-header-pills {\n margin-right: -$card-cap-padding-x * .5;\n margin-left: -$card-cap-padding-x * .5;\n}\n\n// Card image\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: $card-img-overlay-padding;\n @include border-radius($card-inner-border-radius);\n}\n\n.card-img,\n.card-img-top,\n.card-img-bottom {\n width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch\n}\n\n.card-img,\n.card-img-top {\n @include border-top-radius($card-inner-border-radius);\n}\n\n.card-img,\n.card-img-bottom {\n @include border-bottom-radius($card-inner-border-radius);\n}\n\n\n//\n// Card groups\n//\n\n.card-group {\n // The child selector allows nested `.card` within `.card-group`\n // to display properly.\n > .card {\n margin-bottom: $card-group-margin;\n }\n\n @include media-breakpoint-up(sm) {\n display: flex;\n flex-flow: row wrap;\n // The child selector allows nested `.card` within `.card-group`\n // to display properly.\n > .card {\n // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n flex: 1 0 0%;\n margin-bottom: 0;\n\n + .card {\n margin-left: 0;\n border-left: 0;\n }\n\n // Handle rounded corners\n @if $enable-rounded {\n &:not(:last-child) {\n @include border-end-radius(0);\n\n .card-img-top,\n .card-header {\n // stylelint-disable-next-line property-disallowed-list\n border-top-right-radius: 0;\n }\n .card-img-bottom,\n .card-footer {\n // stylelint-disable-next-line property-disallowed-list\n border-bottom-right-radius: 0;\n }\n }\n\n &:not(:first-child) {\n @include border-start-radius(0);\n\n .card-img-top,\n .card-header {\n // stylelint-disable-next-line property-disallowed-list\n border-top-left-radius: 0;\n }\n .card-img-bottom,\n .card-footer {\n // stylelint-disable-next-line property-disallowed-list\n border-bottom-left-radius: 0;\n }\n }\n }\n }\n }\n}\n","//\n// Base styles\n//\n\n.accordion-button {\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n padding: $accordion-button-padding-y $accordion-button-padding-x;\n @include font-size($font-size-base);\n color: $accordion-button-color;\n text-align: left; // Reset button style\n background-color: $accordion-button-bg;\n border: 0;\n @include border-radius(0);\n overflow-anchor: none;\n @include transition($accordion-transition);\n\n &:not(.collapsed) {\n color: $accordion-button-active-color;\n background-color: $accordion-button-active-bg;\n box-shadow: inset 0 ($accordion-border-width * -1) 0 $accordion-border-color;\n\n &::after {\n background-image: escape-svg($accordion-button-active-icon);\n transform: $accordion-icon-transform;\n }\n }\n\n // Accordion icon\n &::after {\n flex-shrink: 0;\n width: $accordion-icon-width;\n height: $accordion-icon-width;\n margin-left: auto;\n content: \"\";\n background-image: escape-svg($accordion-button-icon);\n background-repeat: no-repeat;\n background-size: $accordion-icon-width;\n @include transition($accordion-icon-transition);\n }\n\n &:hover {\n z-index: 2;\n }\n\n &:focus {\n z-index: 3;\n border-color: $accordion-button-focus-border-color;\n outline: 0;\n box-shadow: $accordion-button-focus-box-shadow;\n }\n}\n\n.accordion-header {\n margin-bottom: 0;\n}\n\n.accordion-item {\n background-color: $accordion-bg;\n border: $accordion-border-width solid $accordion-border-color;\n\n &:first-of-type {\n @include border-top-radius($accordion-border-radius);\n\n .accordion-button {\n @include border-top-radius($accordion-inner-border-radius);\n }\n }\n\n &:not(:first-of-type) {\n border-top: 0;\n }\n\n // Only set a border-radius on the last item if the accordion is collapsed\n &:last-of-type {\n @include border-bottom-radius($accordion-border-radius);\n\n .accordion-button {\n &.collapsed {\n @include border-bottom-radius($accordion-inner-border-radius);\n }\n }\n\n .accordion-collapse {\n @include border-bottom-radius($accordion-border-radius);\n }\n }\n}\n\n.accordion-body {\n padding: $accordion-body-padding-y $accordion-body-padding-x;\n}\n\n\n// Flush accordion items\n//\n// Remove borders and border-radius to keep accordion items edge-to-edge.\n\n.accordion-flush {\n .accordion-collapse {\n border-width: 0;\n }\n\n .accordion-item {\n border-right: 0;\n border-left: 0;\n @include border-radius(0);\n\n &:first-child { border-top: 0; }\n &:last-child { border-bottom: 0; }\n\n .accordion-button {\n @include border-radius(0);\n }\n }\n}\n",".breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: $breadcrumb-padding-y $breadcrumb-padding-x;\n margin-bottom: $breadcrumb-margin-bottom;\n @include font-size($breadcrumb-font-size);\n list-style: none;\n background-color: $breadcrumb-bg;\n @include border-radius($breadcrumb-border-radius);\n}\n\n.breadcrumb-item {\n // The separator between breadcrumbs (by default, a forward-slash: \"/\")\n + .breadcrumb-item {\n padding-left: $breadcrumb-item-padding-x;\n\n &::before {\n float: left; // Suppress inline spacings and underlining of the separator\n padding-right: $breadcrumb-item-padding-x;\n color: $breadcrumb-divider-color;\n content: var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{\"/* rtl:\"} var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{\"*/\"};\n }\n }\n\n &.active {\n color: $breadcrumb-active-color;\n }\n}\n",".pagination {\n display: flex;\n @include list-unstyled();\n}\n\n.page-link {\n position: relative;\n display: block;\n color: $pagination-color;\n text-decoration: if($link-decoration == none, null, none);\n background-color: $pagination-bg;\n border: $pagination-border-width solid $pagination-border-color;\n @include transition($pagination-transition);\n\n &:hover {\n z-index: 2;\n color: $pagination-hover-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n background-color: $pagination-hover-bg;\n border-color: $pagination-hover-border-color;\n }\n\n &:focus {\n z-index: 3;\n color: $pagination-focus-color;\n background-color: $pagination-focus-bg;\n outline: $pagination-focus-outline;\n box-shadow: $pagination-focus-box-shadow;\n }\n}\n\n.page-item {\n &:not(:first-child) .page-link {\n margin-left: $pagination-margin-start;\n }\n\n &.active .page-link {\n z-index: 3;\n color: $pagination-active-color;\n @include gradient-bg($pagination-active-bg);\n border-color: $pagination-active-border-color;\n }\n\n &.disabled .page-link {\n color: $pagination-disabled-color;\n pointer-events: none;\n background-color: $pagination-disabled-bg;\n border-color: $pagination-disabled-border-color;\n }\n}\n\n\n//\n// Sizing\n//\n@include pagination-size($pagination-padding-y, $pagination-padding-x, null, $pagination-border-radius);\n\n.pagination-lg {\n @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $pagination-border-radius-lg);\n}\n\n.pagination-sm {\n @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $pagination-border-radius-sm);\n}\n","// Pagination\n\n// scss-docs-start pagination-mixin\n@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {\n .page-link {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n }\n\n .page-item {\n @if $pagination-margin-start == (-$pagination-border-width) {\n &:first-child {\n .page-link {\n @include border-start-radius($border-radius);\n }\n }\n\n &:last-child {\n .page-link {\n @include border-end-radius($border-radius);\n }\n }\n } @else {\n //Add border-radius to all pageLinks in case they have left margin\n .page-link {\n @include border-radius($border-radius);\n }\n }\n }\n}\n// scss-docs-end pagination-mixin\n","// Base class\n//\n// Requires one of the contextual, color modifier classes for `color` and\n// `background-color`.\n\n.badge {\n display: inline-block;\n padding: $badge-padding-y $badge-padding-x;\n @include font-size($badge-font-size);\n font-weight: $badge-font-weight;\n line-height: 1;\n color: $badge-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n @include border-radius($badge-border-radius);\n @include gradient-bg();\n\n // Empty badges collapse automatically\n &:empty {\n display: none;\n }\n}\n\n// Quick fix for badges in buttons\n.btn .badge {\n position: relative;\n top: -1px;\n}\n","//\n// Base styles\n//\n\n.alert {\n position: relative;\n padding: $alert-padding-y $alert-padding-x;\n margin-bottom: $alert-margin-bottom;\n border: $alert-border-width solid transparent;\n @include border-radius($alert-border-radius);\n}\n\n// Headings for larger alerts\n.alert-heading {\n // Specified to prevent conflicts of changing $headings-color\n color: inherit;\n}\n\n// Provide class for links that match alerts\n.alert-link {\n font-weight: $alert-link-font-weight;\n}\n\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissible {\n padding-right: $alert-dismissible-padding-r;\n\n // Adjust close link position\n .btn-close {\n position: absolute;\n top: 0;\n right: 0;\n z-index: $stretched-link-z-index + 1;\n padding: $alert-padding-y * 1.25 $alert-padding-x;\n }\n}\n\n\n// scss-docs-start alert-modifiers\n// Generate contextual modifier classes for colorizing the alert.\n\n@each $state, $value in $theme-colors {\n $alert-background: shift-color($value, $alert-bg-scale);\n $alert-border: shift-color($value, $alert-border-scale);\n $alert-color: shift-color($value, $alert-color-scale);\n @if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) {\n $alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale));\n }\n .alert-#{$state} {\n @include alert-variant($alert-background, $alert-border, $alert-color);\n }\n}\n// scss-docs-end alert-modifiers\n","// scss-docs-start alert-variant-mixin\n@mixin alert-variant($background, $border, $color) {\n color: $color;\n @include gradient-bg($background);\n border-color: $border;\n\n .alert-link {\n color: shade-color($color, 20%);\n }\n}\n// scss-docs-end alert-variant-mixin\n","// Disable animation if transitions are disabled\n\n// scss-docs-start progress-keyframes\n@if $enable-transitions {\n @keyframes progress-bar-stripes {\n 0% { background-position-x: $progress-height; }\n }\n}\n// scss-docs-end progress-keyframes\n\n.progress {\n display: flex;\n height: $progress-height;\n overflow: hidden; // force rounded corners by cropping it\n @include font-size($progress-font-size);\n background-color: $progress-bg;\n @include border-radius($progress-border-radius);\n @include box-shadow($progress-box-shadow);\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n overflow: hidden;\n color: $progress-bar-color;\n text-align: center;\n white-space: nowrap;\n background-color: $progress-bar-bg;\n @include transition($progress-bar-transition);\n}\n\n.progress-bar-striped {\n @include gradient-striped();\n background-size: $progress-height $progress-height;\n}\n\n@if $enable-transitions {\n .progress-bar-animated {\n animation: $progress-bar-animation-timing progress-bar-stripes;\n\n @if $enable-reduced-motion {\n @media (prefers-reduced-motion: reduce) {\n animation: none;\n }\n }\n }\n}\n","// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n display: flex;\n flex-direction: column;\n\n // No need to set list-style: none; since .list-group-item is block level\n padding-left: 0; // reset padding because ul and ol\n margin-bottom: 0;\n @include border-radius($list-group-border-radius);\n}\n\n.list-group-numbered {\n list-style-type: none;\n counter-reset: section;\n\n > li::before {\n // Increments only this instance of the section counter\n content: counters(section, \".\") \". \";\n counter-increment: section;\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive\n// list items. Includes an extra `.active` modifier class for selected items.\n\n.list-group-item-action {\n width: 100%; // For `<button>`s (anchors become 100% by default though)\n color: $list-group-action-color;\n text-align: inherit; // For `<button>`s (anchors inherit)\n\n // Hover state\n &:hover,\n &:focus {\n z-index: 1; // Place hover/focus items above their siblings for proper border styling\n color: $list-group-action-hover-color;\n text-decoration: none;\n background-color: $list-group-hover-bg;\n }\n\n &:active {\n color: $list-group-action-active-color;\n background-color: $list-group-action-active-bg;\n }\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: $list-group-item-padding-y $list-group-item-padding-x;\n color: $list-group-color;\n text-decoration: if($link-decoration == none, null, none);\n background-color: $list-group-bg;\n border: $list-group-border-width solid $list-group-border-color;\n\n &:first-child {\n @include border-top-radius(inherit);\n }\n\n &:last-child {\n @include border-bottom-radius(inherit);\n }\n\n &.disabled,\n &:disabled {\n color: $list-group-disabled-color;\n pointer-events: none;\n background-color: $list-group-disabled-bg;\n }\n\n // Include both here for `<a>`s and `<button>`s\n &.active {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: $list-group-active-color;\n background-color: $list-group-active-bg;\n border-color: $list-group-active-border-color;\n }\n\n & + & {\n border-top-width: 0;\n\n &.active {\n margin-top: -$list-group-border-width;\n border-top-width: $list-group-border-width;\n }\n }\n}\n\n\n// Horizontal\n//\n// Change the layout of list group items from vertical (default) to horizontal.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .list-group-horizontal#{$infix} {\n flex-direction: row;\n\n > .list-group-item {\n &:first-child {\n @include border-bottom-start-radius($list-group-border-radius);\n @include border-top-end-radius(0);\n }\n\n &:last-child {\n @include border-top-end-radius($list-group-border-radius);\n @include border-bottom-start-radius(0);\n }\n\n &.active {\n margin-top: 0;\n }\n\n + .list-group-item {\n border-top-width: $list-group-border-width;\n border-left-width: 0;\n\n &.active {\n margin-left: -$list-group-border-width;\n border-left-width: $list-group-border-width;\n }\n }\n }\n }\n }\n}\n\n\n// Flush list items\n//\n// Remove borders and border-radius to keep list group items edge-to-edge. Most\n// useful within other components (e.g., cards).\n\n.list-group-flush {\n @include border-radius(0);\n\n > .list-group-item {\n border-width: 0 0 $list-group-border-width;\n\n &:last-child {\n border-bottom-width: 0;\n }\n }\n}\n\n\n// scss-docs-start list-group-modifiers\n// List group contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n@each $state, $value in $theme-colors {\n $list-group-variant-bg: shift-color($value, $list-group-item-bg-scale);\n $list-group-variant-color: shift-color($value, $list-group-item-color-scale);\n @if (contrast-ratio($list-group-variant-bg, $list-group-variant-color) < $min-contrast-ratio) {\n $list-group-variant-color: mix($value, color-contrast($list-group-variant-bg), abs($list-group-item-color-scale));\n }\n\n @include list-group-item-variant($state, $list-group-variant-bg, $list-group-variant-color);\n}\n// scss-docs-end list-group-modifiers\n","// List Groups\n\n// scss-docs-start list-group-mixin\n@mixin list-group-item-variant($state, $background, $color) {\n .list-group-item-#{$state} {\n color: $color;\n background-color: $background;\n\n &.list-group-item-action {\n &:hover,\n &:focus {\n color: $color;\n background-color: shade-color($background, 10%);\n }\n\n &.active {\n color: $white;\n background-color: $color;\n border-color: $color;\n }\n }\n }\n}\n// scss-docs-end list-group-mixin\n","// transparent background and border properties included for button version.\n// iOS requires the button element instead of an anchor tag.\n// If you want the anchor version, it requires `href=\"#\"`.\n// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n.btn-close {\n box-sizing: content-box;\n width: $btn-close-width;\n height: $btn-close-height;\n padding: $btn-close-padding-y $btn-close-padding-x;\n color: $btn-close-color;\n background: transparent escape-svg($btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements\n border: 0; // for button elements\n @include border-radius();\n opacity: $btn-close-opacity;\n\n // Override <a>'s hover style\n &:hover {\n color: $btn-close-color;\n text-decoration: none;\n opacity: $btn-close-hover-opacity;\n }\n\n &:focus {\n outline: 0;\n box-shadow: $btn-close-focus-shadow;\n opacity: $btn-close-focus-opacity;\n }\n\n &:disabled,\n &.disabled {\n pointer-events: none;\n user-select: none;\n opacity: $btn-close-disabled-opacity;\n }\n}\n\n.btn-close-white {\n filter: $btn-close-white-filter;\n}\n",".toast {\n width: $toast-max-width;\n max-width: 100%;\n @include font-size($toast-font-size);\n color: $toast-color;\n pointer-events: auto;\n background-color: $toast-background-color;\n background-clip: padding-box;\n border: $toast-border-width solid $toast-border-color;\n box-shadow: $toast-box-shadow;\n @include border-radius($toast-border-radius);\n\n &.showing {\n opacity: 0;\n }\n\n &:not(.show) {\n display: none;\n }\n}\n\n.toast-container {\n width: max-content;\n max-width: 100%;\n pointer-events: none;\n\n > :not(:last-child) {\n margin-bottom: $toast-spacing;\n }\n}\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: $toast-padding-y $toast-padding-x;\n color: $toast-header-color;\n background-color: $toast-header-background-color;\n background-clip: padding-box;\n border-bottom: $toast-border-width solid $toast-header-border-color;\n @include border-top-radius(subtract($toast-border-radius, $toast-border-width));\n\n .btn-close {\n margin-right: $toast-padding-x * -.5;\n margin-left: $toast-padding-x;\n }\n}\n\n.toast-body {\n padding: $toast-padding-x; // apply to both vertical and horizontal\n word-wrap: break-word;\n}\n","// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and stuff\n\n\n// Container that the modal scrolls within\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: $zindex-modal;\n display: none;\n width: 100%;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n // We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a\n // gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342\n // See also https://github.com/twbs/bootstrap/issues/17695\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: $modal-dialog-margin;\n // allow clicks to pass through for custom click handling to close modal\n pointer-events: none;\n\n // When fading in the modal, animate it to slide down\n .modal.fade & {\n @include transition($modal-transition);\n transform: $modal-fade-transform;\n }\n .modal.show & {\n transform: $modal-show-transform;\n }\n\n // When trying to close, animate focus to scale\n .modal.modal-static & {\n transform: $modal-scale-transform;\n }\n}\n\n.modal-dialog-scrollable {\n height: subtract(100%, $modal-dialog-margin * 2);\n\n .modal-content {\n max-height: 100%;\n overflow: hidden;\n }\n\n .modal-body {\n overflow-y: auto;\n }\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: subtract(100%, $modal-dialog-margin * 2);\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`\n // counteract the pointer-events: none; in the .modal-dialog\n color: $modal-content-color;\n pointer-events: auto;\n background-color: $modal-content-bg;\n background-clip: padding-box;\n border: $modal-content-border-width solid $modal-content-border-color;\n @include border-radius($modal-content-border-radius);\n @include box-shadow($modal-content-box-shadow-xs);\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n @include overlay-backdrop($zindex-modal-backdrop, $modal-backdrop-bg, $modal-backdrop-opacity);\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends\n padding: $modal-header-padding;\n border-bottom: $modal-header-border-width solid $modal-header-border-color;\n @include border-top-radius($modal-content-inner-border-radius);\n\n .btn-close {\n padding: ($modal-header-padding-y * .5) ($modal-header-padding-x * .5);\n margin: ($modal-header-padding-y * -.5) ($modal-header-padding-x * -.5) ($modal-header-padding-y * -.5) auto;\n }\n}\n\n// Title text within header\n.modal-title {\n margin-bottom: 0;\n line-height: $modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n // Enable `flex-grow: 1` so that the body take up as much space as possible\n // when there should be a fixed height on `.modal-dialog`.\n flex: 1 1 auto;\n padding: $modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n display: flex;\n flex-wrap: wrap;\n flex-shrink: 0;\n align-items: center; // vertically center\n justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items\n padding: $modal-inner-padding - $modal-footer-margin-between * .5;\n border-top: $modal-footer-border-width solid $modal-footer-border-color;\n @include border-bottom-radius($modal-content-inner-border-radius);\n\n // Place margin between footer elements\n // This solution is far from ideal because of the universal selector usage,\n // but is needed to fix https://github.com/twbs/bootstrap/issues/24800\n > * {\n margin: $modal-footer-margin-between * .5;\n }\n}\n\n// Scale up the modal\n@include media-breakpoint-up(sm) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n max-width: $modal-md;\n margin: $modal-dialog-margin-y-sm-up auto;\n }\n\n .modal-dialog-scrollable {\n height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);\n }\n\n .modal-dialog-centered {\n min-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);\n }\n\n .modal-content {\n @include box-shadow($modal-content-box-shadow-sm-up);\n }\n\n .modal-sm { max-width: $modal-sm; }\n}\n\n@include media-breakpoint-up(lg) {\n .modal-lg,\n .modal-xl {\n max-width: $modal-lg;\n }\n}\n\n@include media-breakpoint-up(xl) {\n .modal-xl { max-width: $modal-xl; }\n}\n\n// scss-docs-start modal-fullscreen-loop\n@each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n $postfix: if($infix != \"\", $infix + \"-down\", \"\");\n\n @include media-breakpoint-down($breakpoint) {\n .modal-fullscreen#{$postfix} {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n\n .modal-content {\n height: 100%;\n border: 0;\n @include border-radius(0);\n }\n\n .modal-header {\n @include border-radius(0);\n }\n\n .modal-body {\n overflow-y: auto;\n }\n\n .modal-footer {\n @include border-radius(0);\n }\n }\n }\n}\n// scss-docs-end modal-fullscreen-loop\n","// Shared between modals and offcanvases\n@mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) {\n position: fixed;\n top: 0;\n left: 0;\n z-index: $zindex;\n width: 100vw;\n height: 100vh;\n background-color: $backdrop-bg;\n\n // Fade for backdrop\n &.fade { opacity: 0; }\n &.show { opacity: $backdrop-opacity; }\n}\n","// Base class\n.tooltip {\n position: absolute;\n z-index: $zindex-tooltip;\n display: block;\n margin: $tooltip-margin;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n @include reset-text();\n @include font-size($tooltip-font-size);\n // Allow breaking very long words so they don't overflow the tooltip's bounds\n word-wrap: break-word;\n opacity: 0;\n\n &.show { opacity: $tooltip-opacity; }\n\n .tooltip-arrow {\n position: absolute;\n display: block;\n width: $tooltip-arrow-width;\n height: $tooltip-arrow-height;\n\n &::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n }\n }\n}\n\n.bs-tooltip-top {\n padding: $tooltip-arrow-height 0;\n\n .tooltip-arrow {\n bottom: 0;\n\n &::before {\n top: -1px;\n border-width: $tooltip-arrow-height ($tooltip-arrow-width * .5) 0;\n border-top-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-end {\n padding: 0 $tooltip-arrow-height;\n\n .tooltip-arrow {\n left: 0;\n width: $tooltip-arrow-height;\n height: $tooltip-arrow-width;\n\n &::before {\n right: -1px;\n border-width: ($tooltip-arrow-width * .5) $tooltip-arrow-height ($tooltip-arrow-width * .5) 0;\n border-right-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-bottom {\n padding: $tooltip-arrow-height 0;\n\n .tooltip-arrow {\n top: 0;\n\n &::before {\n bottom: -1px;\n border-width: 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height;\n border-bottom-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-start {\n padding: 0 $tooltip-arrow-height;\n\n .tooltip-arrow {\n right: 0;\n width: $tooltip-arrow-height;\n height: $tooltip-arrow-width;\n\n &::before {\n left: -1px;\n border-width: ($tooltip-arrow-width * .5) 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height;\n border-left-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-auto {\n &[data-popper-placement^=\"top\"] {\n @extend .bs-tooltip-top;\n }\n &[data-popper-placement^=\"right\"] {\n @extend .bs-tooltip-end;\n }\n &[data-popper-placement^=\"bottom\"] {\n @extend .bs-tooltip-bottom;\n }\n &[data-popper-placement^=\"left\"] {\n @extend .bs-tooltip-start;\n }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: $tooltip-max-width;\n padding: $tooltip-padding-y $tooltip-padding-x;\n color: $tooltip-color;\n text-align: center;\n background-color: $tooltip-bg;\n @include border-radius($tooltip-border-radius);\n}\n","@mixin reset-text {\n font-family: $font-family-base;\n // We deliberately do NOT reset font-size or overflow-wrap / word-wrap.\n font-style: normal;\n font-weight: $font-weight-normal;\n line-height: $line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n}\n",".popover {\n position: absolute;\n top: 0;\n left: 0 #{\"/* rtl:ignore */\"};\n z-index: $zindex-popover;\n display: block;\n max-width: $popover-max-width;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n @include reset-text();\n @include font-size($popover-font-size);\n // Allow breaking very long words so they don't overflow the popover's bounds\n word-wrap: break-word;\n background-color: $popover-bg;\n background-clip: padding-box;\n border: $popover-border-width solid $popover-border-color;\n @include border-radius($popover-border-radius);\n @include box-shadow($popover-box-shadow);\n\n .popover-arrow {\n position: absolute;\n display: block;\n width: $popover-arrow-width;\n height: $popover-arrow-height;\n\n &::before,\n &::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n }\n }\n}\n\n.bs-popover-top {\n > .popover-arrow {\n bottom: subtract(-$popover-arrow-height, $popover-border-width);\n\n &::before {\n bottom: 0;\n border-width: $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-top-color: $popover-arrow-outer-color;\n }\n\n &::after {\n bottom: $popover-border-width;\n border-width: $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-top-color: $popover-arrow-color;\n }\n }\n}\n\n.bs-popover-end {\n > .popover-arrow {\n left: subtract(-$popover-arrow-height, $popover-border-width);\n width: $popover-arrow-height;\n height: $popover-arrow-width;\n\n &::before {\n left: 0;\n border-width: ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-right-color: $popover-arrow-outer-color;\n }\n\n &::after {\n left: $popover-border-width;\n border-width: ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-right-color: $popover-arrow-color;\n }\n }\n}\n\n.bs-popover-bottom {\n > .popover-arrow {\n top: subtract(-$popover-arrow-height, $popover-border-width);\n\n &::before {\n top: 0;\n border-width: 0 ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5);\n border-bottom-color: $popover-arrow-outer-color;\n }\n\n &::after {\n top: $popover-border-width;\n border-width: 0 ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5);\n border-bottom-color: $popover-arrow-color;\n }\n }\n\n // This will remove the popover-header's border just below the arrow\n .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: $popover-arrow-width;\n margin-left: -$popover-arrow-width * .5;\n content: \"\";\n border-bottom: $popover-border-width solid $popover-header-bg;\n }\n}\n\n.bs-popover-start {\n > .popover-arrow {\n right: subtract(-$popover-arrow-height, $popover-border-width);\n width: $popover-arrow-height;\n height: $popover-arrow-width;\n\n &::before {\n right: 0;\n border-width: ($popover-arrow-width * .5) 0 ($popover-arrow-width * .5) $popover-arrow-height;\n border-left-color: $popover-arrow-outer-color;\n }\n\n &::after {\n right: $popover-border-width;\n border-width: ($popover-arrow-width * .5) 0 ($popover-arrow-width * .5) $popover-arrow-height;\n border-left-color: $popover-arrow-color;\n }\n }\n}\n\n.bs-popover-auto {\n &[data-popper-placement^=\"top\"] {\n @extend .bs-popover-top;\n }\n &[data-popper-placement^=\"right\"] {\n @extend .bs-popover-end;\n }\n &[data-popper-placement^=\"bottom\"] {\n @extend .bs-popover-bottom;\n }\n &[data-popper-placement^=\"left\"] {\n @extend .bs-popover-start;\n }\n}\n\n// Offset the popover to account for the popover arrow\n.popover-header {\n padding: $popover-header-padding-y $popover-header-padding-x;\n margin-bottom: 0; // Reset the default from Reboot\n @include font-size($font-size-base);\n color: $popover-header-color;\n background-color: $popover-header-bg;\n border-bottom: $popover-border-width solid $popover-border-color;\n @include border-top-radius($popover-inner-border-radius);\n\n &:empty {\n display: none;\n }\n}\n\n.popover-body {\n padding: $popover-body-padding-y $popover-body-padding-x;\n color: $popover-body-color;\n}\n","// Notes on the classes:\n//\n// 1. .carousel.pointer-event should ideally be pan-y (to allow for users to scroll vertically)\n// even when their scroll action started on a carousel, but for compatibility (with Firefox)\n// we're preventing all actions instead\n// 2. The .carousel-item-start and .carousel-item-end is used to indicate where\n// the active slide is heading.\n// 3. .active.carousel-item is the current slide.\n// 4. .active.carousel-item-start and .active.carousel-item-end is the current\n// slide in its in-transition state. Only one of these occurs at a time.\n// 5. .carousel-item-next.carousel-item-start and .carousel-item-prev.carousel-item-end\n// is the upcoming slide in transition.\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n @include clearfix();\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n backface-visibility: hidden;\n @include transition($carousel-transition);\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n/* rtl:begin:ignore */\n.carousel-item-next:not(.carousel-item-start),\n.active.carousel-item-end {\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-end),\n.active.carousel-item-start {\n transform: translateX(-100%);\n}\n\n/* rtl:end:ignore */\n\n\n//\n// Alternate transitions\n//\n\n.carousel-fade {\n .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none;\n }\n\n .carousel-item.active,\n .carousel-item-next.carousel-item-start,\n .carousel-item-prev.carousel-item-end {\n z-index: 1;\n opacity: 1;\n }\n\n .active.carousel-item-start,\n .active.carousel-item-end {\n z-index: 0;\n opacity: 0;\n @include transition(opacity 0s $carousel-transition-duration);\n }\n}\n\n\n//\n// Left/right controls for nav\n//\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n // Use flex for alignment (1-3)\n display: flex; // 1. allow flex styles\n align-items: center; // 2. vertically center contents\n justify-content: center; // 3. horizontally center contents\n width: $carousel-control-width;\n padding: 0;\n color: $carousel-control-color;\n text-align: center;\n background: none;\n border: 0;\n opacity: $carousel-control-opacity;\n @include transition($carousel-control-transition);\n\n // Hover/focus state\n &:hover,\n &:focus {\n color: $carousel-control-color;\n text-decoration: none;\n outline: 0;\n opacity: $carousel-control-hover-opacity;\n }\n}\n.carousel-control-prev {\n left: 0;\n background-image: if($enable-gradients, linear-gradient(90deg, rgba($black, .25), rgba($black, .001)), null);\n}\n.carousel-control-next {\n right: 0;\n background-image: if($enable-gradients, linear-gradient(270deg, rgba($black, .25), rgba($black, .001)), null);\n}\n\n// Icons for within\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: $carousel-control-icon-width;\n height: $carousel-control-icon-width;\n background-repeat: no-repeat;\n background-position: 50%;\n background-size: 100% 100%;\n}\n\n/* rtl:options: {\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n} */\n.carousel-control-prev-icon {\n background-image: escape-svg($carousel-control-prev-icon-bg);\n}\n.carousel-control-next-icon {\n background-image: escape-svg($carousel-control-next-icon-bg);\n}\n\n// Optional indicator pips/controls\n//\n// Add a container (such as a list) with the following class and add an item (ideally a focusable control,\n// like a button) with data-bs-target for each slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 2;\n display: flex;\n justify-content: center;\n padding: 0;\n // Use the .carousel-control's width as margin so we don't overlay those\n margin-right: $carousel-control-width;\n margin-bottom: 1rem;\n margin-left: $carousel-control-width;\n list-style: none;\n\n [data-bs-target] {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: $carousel-indicator-width;\n height: $carousel-indicator-height;\n padding: 0;\n margin-right: $carousel-indicator-spacer;\n margin-left: $carousel-indicator-spacer;\n text-indent: -999px;\n cursor: pointer;\n background-color: $carousel-indicator-active-bg;\n background-clip: padding-box;\n border: 0;\n // Use transparent borders to increase the hit area by 10px on top and bottom.\n border-top: $carousel-indicator-hit-area-height solid transparent;\n border-bottom: $carousel-indicator-hit-area-height solid transparent;\n opacity: $carousel-indicator-opacity;\n @include transition($carousel-indicator-transition);\n }\n\n .active {\n opacity: $carousel-indicator-active-opacity;\n }\n}\n\n\n// Optional captions\n//\n//\n\n.carousel-caption {\n position: absolute;\n right: (100% - $carousel-caption-width) * .5;\n bottom: $carousel-caption-spacer;\n left: (100% - $carousel-caption-width) * .5;\n padding-top: $carousel-caption-padding-y;\n padding-bottom: $carousel-caption-padding-y;\n color: $carousel-caption-color;\n text-align: center;\n}\n\n// Dark mode carousel\n\n.carousel-dark {\n .carousel-control-prev-icon,\n .carousel-control-next-icon {\n filter: $carousel-dark-control-icon-filter;\n }\n\n .carousel-indicators [data-bs-target] {\n background-color: $carousel-dark-indicator-active-bg;\n }\n\n .carousel-caption {\n color: $carousel-dark-caption-color;\n }\n}\n","// scss-docs-start clearfix\n@mixin clearfix() {\n &::after {\n display: block;\n clear: both;\n content: \"\";\n }\n}\n// scss-docs-end clearfix\n","//\n// Rotating border\n//\n\n// scss-docs-start spinner-border-keyframes\n@keyframes spinner-border {\n to { transform: rotate(360deg) #{\"/* rtl:ignore */\"}; }\n}\n// scss-docs-end spinner-border-keyframes\n\n.spinner-border {\n display: inline-block;\n width: $spinner-width;\n height: $spinner-height;\n vertical-align: $spinner-vertical-align;\n border: $spinner-border-width solid currentColor;\n border-right-color: transparent;\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 50%;\n animation: $spinner-animation-speed linear infinite spinner-border;\n}\n\n.spinner-border-sm {\n width: $spinner-width-sm;\n height: $spinner-height-sm;\n border-width: $spinner-border-width-sm;\n}\n\n//\n// Growing circle\n//\n\n// scss-docs-start spinner-grow-keyframes\n@keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n// scss-docs-end spinner-grow-keyframes\n\n.spinner-grow {\n display: inline-block;\n width: $spinner-width;\n height: $spinner-height;\n vertical-align: $spinner-vertical-align;\n background-color: currentColor;\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 50%;\n opacity: 0;\n animation: $spinner-animation-speed linear infinite spinner-grow;\n}\n\n.spinner-grow-sm {\n width: $spinner-width-sm;\n height: $spinner-height-sm;\n}\n\n@if $enable-reduced-motion {\n @media (prefers-reduced-motion: reduce) {\n .spinner-border,\n .spinner-grow {\n animation-duration: $spinner-animation-speed * 2;\n }\n }\n}\n",".offcanvas {\n position: fixed;\n bottom: 0;\n z-index: $zindex-offcanvas;\n display: flex;\n flex-direction: column;\n max-width: 100%;\n color: $offcanvas-color;\n visibility: hidden;\n background-color: $offcanvas-bg-color;\n background-clip: padding-box;\n outline: 0;\n @include box-shadow($offcanvas-box-shadow);\n @include transition(transform $offcanvas-transition-duration ease-in-out);\n}\n\n.offcanvas-backdrop {\n @include overlay-backdrop($zindex-offcanvas-backdrop, $offcanvas-backdrop-bg, $offcanvas-backdrop-opacity);\n}\n\n.offcanvas-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: $offcanvas-padding-y $offcanvas-padding-x;\n\n .btn-close {\n padding: ($offcanvas-padding-y * .5) ($offcanvas-padding-x * .5);\n margin-top: $offcanvas-padding-y * -.5;\n margin-right: $offcanvas-padding-x * -.5;\n margin-bottom: $offcanvas-padding-y * -.5;\n }\n}\n\n.offcanvas-title {\n margin-bottom: 0;\n line-height: $offcanvas-title-line-height;\n}\n\n.offcanvas-body {\n flex-grow: 1;\n padding: $offcanvas-padding-y $offcanvas-padding-x;\n overflow-y: auto;\n}\n\n.offcanvas-start {\n top: 0;\n left: 0;\n width: $offcanvas-horizontal-width;\n border-right: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateX(-100%);\n}\n\n.offcanvas-end {\n top: 0;\n right: 0;\n width: $offcanvas-horizontal-width;\n border-left: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateX(100%);\n}\n\n.offcanvas-top {\n top: 0;\n right: 0;\n left: 0;\n height: $offcanvas-vertical-height;\n max-height: 100%;\n border-bottom: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateY(-100%);\n}\n\n.offcanvas-bottom {\n right: 0;\n left: 0;\n height: $offcanvas-vertical-height;\n max-height: 100%;\n border-top: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateY(100%);\n}\n\n.offcanvas.show {\n transform: none;\n}\n",".placeholder {\n display: inline-block;\n min-height: 1em;\n vertical-align: middle;\n cursor: wait;\n background-color: currentColor;\n opacity: $placeholder-opacity-max;\n\n &.btn::before {\n display: inline-block;\n content: \"\";\n }\n}\n\n// Sizing\n.placeholder-xs {\n min-height: .6em;\n}\n\n.placeholder-sm {\n min-height: .8em;\n}\n\n.placeholder-lg {\n min-height: 1.2em;\n}\n\n// Animation\n.placeholder-glow {\n .placeholder {\n animation: placeholder-glow 2s ease-in-out infinite;\n }\n}\n\n@keyframes placeholder-glow {\n 50% {\n opacity: $placeholder-opacity-min;\n }\n}\n\n.placeholder-wave {\n mask-image: linear-gradient(130deg, $black 55%, rgba(0, 0, 0, (1 - $placeholder-opacity-min)) 75%, $black 95%);\n mask-size: 200% 100%;\n animation: placeholder-wave 2s linear infinite;\n}\n\n@keyframes placeholder-wave {\n 100% {\n mask-position: -200% 0%;\n }\n}\n","@each $color, $value in $theme-colors {\n .link-#{$color} {\n color: $value;\n\n @if $link-shade-percentage != 0 {\n &:hover,\n &:focus {\n color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage));\n }\n }\n }\n}\n","// Credit: Nicolas Gallagher and SUIT CSS.\n\n.ratio {\n position: relative;\n width: 100%;\n\n &::before {\n display: block;\n padding-top: var(--#{$variable-prefix}aspect-ratio);\n content: \"\";\n }\n\n > * {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n}\n\n@each $key, $ratio in $aspect-ratios {\n .ratio-#{$key} {\n --#{$variable-prefix}aspect-ratio: #{$ratio};\n }\n}\n","// Shorthand\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: $zindex-fixed;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: $zindex-fixed;\n}\n\n// Responsive sticky top\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .sticky#{$infix}-top {\n position: sticky;\n top: 0;\n z-index: $zindex-sticky;\n }\n }\n}\n","// scss-docs-start stacks\n.hstack {\n display: flex;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n}\n\n.vstack {\n display: flex;\n flex: 1 1 auto;\n flex-direction: column;\n align-self: stretch;\n}\n// scss-docs-end stacks\n","//\n// Visually hidden\n//\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n @include visually-hidden();\n}\n","// stylelint-disable declaration-no-important\n\n// Hide content visually while keeping it accessible to assistive technologies\n//\n// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/\n// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/\n\n@mixin visually-hidden() {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n// Use to only display content when it's focused, or one of its child elements is focused\n// (i.e. when focus is within the element/container that the class was applied to)\n//\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n\n@mixin visually-hidden-focusable() {\n &:not(:focus):not(:focus-within) {\n @include visually-hidden();\n }\n}\n","//\n// Stretched link\n//\n\n.stretched-link {\n &::#{$stretched-link-pseudo-element} {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: $stretched-link-z-index;\n content: \"\";\n }\n}\n","//\n// Text truncation\n//\n\n.text-truncate {\n @include text-truncate();\n}\n","// Text truncate\n// Requires inline-block or block for proper styling\n\n@mixin text-truncate() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n",".vr {\n display: inline-block;\n align-self: stretch;\n width: 1px;\n min-height: 1em;\n background-color: currentColor;\n opacity: $hr-opacity;\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (eg. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $value in $is-local-vars {\n --#{$variable-prefix}#{$local-var}: #{$value};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/WebUI/wwwroot/css/open-iconic/FONT-LICENSE b/WebUI/wwwroot/css/open-iconic/FONT-LICENSE new file mode 100644 index 0000000..a1dc03f --- /dev/null +++ b/WebUI/wwwroot/css/open-iconic/FONT-LICENSE @@ -0,0 +1,86 @@ +SIL OPEN FONT LICENSE Version 1.1 + +Copyright (c) 2014 Waybury + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/WebUI/wwwroot/css/open-iconic/ICON-LICENSE b/WebUI/wwwroot/css/open-iconic/ICON-LICENSE new file mode 100644 index 0000000..2199f4a --- /dev/null +++ b/WebUI/wwwroot/css/open-iconic/ICON-LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Waybury + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/WebUI/wwwroot/css/open-iconic/README.md b/WebUI/wwwroot/css/open-iconic/README.md new file mode 100644 index 0000000..e34bd86 --- /dev/null +++ b/WebUI/wwwroot/css/open-iconic/README.md @@ -0,0 +1,114 @@ +[Open Iconic v1.1.1](https://github.com/iconic/open-iconic) +=========== + +### Open Iconic is the open source sibling of [Iconic](https://github.com/iconic/open-iconic). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](https://github.com/iconic/open-iconic) + + + +## What's in Open Iconic? + +* 223 icons designed to be legible down to 8 pixels +* Super-light SVG files - 61.8 for the entire set +* SVG sprite—the modern replacement for icon fonts +* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats +* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats +* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px. + + +## Getting Started + +#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](https://github.com/iconic/open-iconic) and [Reference](https://github.com/iconic/open-iconic) sections. + +### General Usage + +#### Using Open Iconic's SVGs + +We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute). + +``` +<img src="/open-iconic/svg/icon-name.svg" alt="icon name"> +``` + +#### Using Open Iconic's SVG Sprite + +Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack. + +Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for each different icon in the* `<use>` *tag.* + +``` +<svg class="icon"> + <use xlink:href="open-iconic.svg#account-login" class="icon-account-login"></use> +</svg> +``` + +Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `<svg>` tag with equal width and height dimensions. + +``` +.icon { + width: 16px; + height: 16px; +} +``` + +Coloring icons is even easier. All you need to do is set the `fill` rule on the `<use>` tag. + +``` +.icon-account-login { + fill: #f00; +} +``` + +To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/). + +#### Using Open Iconic's Icon Font... + + +##### …with Bootstrap + +You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}` + + +``` +<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet"> +``` + + +``` +<span class="oi oi-icon-name" title="icon name" aria-hidden="true"></span> +``` + +##### …with Foundation + +You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}` + +``` +<link href="/open-iconic/font/css/open-iconic-foundation.css" rel="stylesheet"> +``` + + +``` +<span class="fi-icon-name" title="icon name" aria-hidden="true"></span> +``` + +##### …on its own + +You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}` + +``` +<link href="/open-iconic/font/css/open-iconic.css" rel="stylesheet"> +``` + +``` +<span class="oi" data-glyph="icon-name" title="icon name" aria-hidden="true"></span> +``` + + +## License + +### Icons + +All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT). + +### Fonts + +All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). diff --git a/WebUI/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css b/WebUI/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css new file mode 100644 index 0000000..4664f2e --- /dev/null +++ b/WebUI/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css @@ -0,0 +1 @@ +@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi{position:relative;top:1px;display:inline-block;speak:none;font-family:Icons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi.oi-align-center:before{text-align:center}.oi.oi-align-left:before{text-align:left}.oi.oi-align-right:before{text-align:right}.oi.oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi.oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi.oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi-account-login:before{content:'\e000'}.oi-account-logout:before{content:'\e001'}.oi-action-redo:before{content:'\e002'}.oi-action-undo:before{content:'\e003'}.oi-align-center:before{content:'\e004'}.oi-align-left:before{content:'\e005'}.oi-align-right:before{content:'\e006'}.oi-aperture:before{content:'\e007'}.oi-arrow-bottom:before{content:'\e008'}.oi-arrow-circle-bottom:before{content:'\e009'}.oi-arrow-circle-left:before{content:'\e00a'}.oi-arrow-circle-right:before{content:'\e00b'}.oi-arrow-circle-top:before{content:'\e00c'}.oi-arrow-left:before{content:'\e00d'}.oi-arrow-right:before{content:'\e00e'}.oi-arrow-thick-bottom:before{content:'\e00f'}.oi-arrow-thick-left:before{content:'\e010'}.oi-arrow-thick-right:before{content:'\e011'}.oi-arrow-thick-top:before{content:'\e012'}.oi-arrow-top:before{content:'\e013'}.oi-audio-spectrum:before{content:'\e014'}.oi-audio:before{content:'\e015'}.oi-badge:before{content:'\e016'}.oi-ban:before{content:'\e017'}.oi-bar-chart:before{content:'\e018'}.oi-basket:before{content:'\e019'}.oi-battery-empty:before{content:'\e01a'}.oi-battery-full:before{content:'\e01b'}.oi-beaker:before{content:'\e01c'}.oi-bell:before{content:'\e01d'}.oi-bluetooth:before{content:'\e01e'}.oi-bold:before{content:'\e01f'}.oi-bolt:before{content:'\e020'}.oi-book:before{content:'\e021'}.oi-bookmark:before{content:'\e022'}.oi-box:before{content:'\e023'}.oi-briefcase:before{content:'\e024'}.oi-british-pound:before{content:'\e025'}.oi-browser:before{content:'\e026'}.oi-brush:before{content:'\e027'}.oi-bug:before{content:'\e028'}.oi-bullhorn:before{content:'\e029'}.oi-calculator:before{content:'\e02a'}.oi-calendar:before{content:'\e02b'}.oi-camera-slr:before{content:'\e02c'}.oi-caret-bottom:before{content:'\e02d'}.oi-caret-left:before{content:'\e02e'}.oi-caret-right:before{content:'\e02f'}.oi-caret-top:before{content:'\e030'}.oi-cart:before{content:'\e031'}.oi-chat:before{content:'\e032'}.oi-check:before{content:'\e033'}.oi-chevron-bottom:before{content:'\e034'}.oi-chevron-left:before{content:'\e035'}.oi-chevron-right:before{content:'\e036'}.oi-chevron-top:before{content:'\e037'}.oi-circle-check:before{content:'\e038'}.oi-circle-x:before{content:'\e039'}.oi-clipboard:before{content:'\e03a'}.oi-clock:before{content:'\e03b'}.oi-cloud-download:before{content:'\e03c'}.oi-cloud-upload:before{content:'\e03d'}.oi-cloud:before{content:'\e03e'}.oi-cloudy:before{content:'\e03f'}.oi-code:before{content:'\e040'}.oi-cog:before{content:'\e041'}.oi-collapse-down:before{content:'\e042'}.oi-collapse-left:before{content:'\e043'}.oi-collapse-right:before{content:'\e044'}.oi-collapse-up:before{content:'\e045'}.oi-command:before{content:'\e046'}.oi-comment-square:before{content:'\e047'}.oi-compass:before{content:'\e048'}.oi-contrast:before{content:'\e049'}.oi-copywriting:before{content:'\e04a'}.oi-credit-card:before{content:'\e04b'}.oi-crop:before{content:'\e04c'}.oi-dashboard:before{content:'\e04d'}.oi-data-transfer-download:before{content:'\e04e'}.oi-data-transfer-upload:before{content:'\e04f'}.oi-delete:before{content:'\e050'}.oi-dial:before{content:'\e051'}.oi-document:before{content:'\e052'}.oi-dollar:before{content:'\e053'}.oi-double-quote-sans-left:before{content:'\e054'}.oi-double-quote-sans-right:before{content:'\e055'}.oi-double-quote-serif-left:before{content:'\e056'}.oi-double-quote-serif-right:before{content:'\e057'}.oi-droplet:before{content:'\e058'}.oi-eject:before{content:'\e059'}.oi-elevator:before{content:'\e05a'}.oi-ellipses:before{content:'\e05b'}.oi-envelope-closed:before{content:'\e05c'}.oi-envelope-open:before{content:'\e05d'}.oi-euro:before{content:'\e05e'}.oi-excerpt:before{content:'\e05f'}.oi-expand-down:before{content:'\e060'}.oi-expand-left:before{content:'\e061'}.oi-expand-right:before{content:'\e062'}.oi-expand-up:before{content:'\e063'}.oi-external-link:before{content:'\e064'}.oi-eye:before{content:'\e065'}.oi-eyedropper:before{content:'\e066'}.oi-file:before{content:'\e067'}.oi-fire:before{content:'\e068'}.oi-flag:before{content:'\e069'}.oi-flash:before{content:'\e06a'}.oi-folder:before{content:'\e06b'}.oi-fork:before{content:'\e06c'}.oi-fullscreen-enter:before{content:'\e06d'}.oi-fullscreen-exit:before{content:'\e06e'}.oi-globe:before{content:'\e06f'}.oi-graph:before{content:'\e070'}.oi-grid-four-up:before{content:'\e071'}.oi-grid-three-up:before{content:'\e072'}.oi-grid-two-up:before{content:'\e073'}.oi-hard-drive:before{content:'\e074'}.oi-header:before{content:'\e075'}.oi-headphones:before{content:'\e076'}.oi-heart:before{content:'\e077'}.oi-home:before{content:'\e078'}.oi-image:before{content:'\e079'}.oi-inbox:before{content:'\e07a'}.oi-infinity:before{content:'\e07b'}.oi-info:before{content:'\e07c'}.oi-italic:before{content:'\e07d'}.oi-justify-center:before{content:'\e07e'}.oi-justify-left:before{content:'\e07f'}.oi-justify-right:before{content:'\e080'}.oi-key:before{content:'\e081'}.oi-laptop:before{content:'\e082'}.oi-layers:before{content:'\e083'}.oi-lightbulb:before{content:'\e084'}.oi-link-broken:before{content:'\e085'}.oi-link-intact:before{content:'\e086'}.oi-list-rich:before{content:'\e087'}.oi-list:before{content:'\e088'}.oi-location:before{content:'\e089'}.oi-lock-locked:before{content:'\e08a'}.oi-lock-unlocked:before{content:'\e08b'}.oi-loop-circular:before{content:'\e08c'}.oi-loop-square:before{content:'\e08d'}.oi-loop:before{content:'\e08e'}.oi-magnifying-glass:before{content:'\e08f'}.oi-map-marker:before{content:'\e090'}.oi-map:before{content:'\e091'}.oi-media-pause:before{content:'\e092'}.oi-media-play:before{content:'\e093'}.oi-media-record:before{content:'\e094'}.oi-media-skip-backward:before{content:'\e095'}.oi-media-skip-forward:before{content:'\e096'}.oi-media-step-backward:before{content:'\e097'}.oi-media-step-forward:before{content:'\e098'}.oi-media-stop:before{content:'\e099'}.oi-medical-cross:before{content:'\e09a'}.oi-menu:before{content:'\e09b'}.oi-microphone:before{content:'\e09c'}.oi-minus:before{content:'\e09d'}.oi-monitor:before{content:'\e09e'}.oi-moon:before{content:'\e09f'}.oi-move:before{content:'\e0a0'}.oi-musical-note:before{content:'\e0a1'}.oi-paperclip:before{content:'\e0a2'}.oi-pencil:before{content:'\e0a3'}.oi-people:before{content:'\e0a4'}.oi-person:before{content:'\e0a5'}.oi-phone:before{content:'\e0a6'}.oi-pie-chart:before{content:'\e0a7'}.oi-pin:before{content:'\e0a8'}.oi-play-circle:before{content:'\e0a9'}.oi-plus:before{content:'\e0aa'}.oi-power-standby:before{content:'\e0ab'}.oi-print:before{content:'\e0ac'}.oi-project:before{content:'\e0ad'}.oi-pulse:before{content:'\e0ae'}.oi-puzzle-piece:before{content:'\e0af'}.oi-question-mark:before{content:'\e0b0'}.oi-rain:before{content:'\e0b1'}.oi-random:before{content:'\e0b2'}.oi-reload:before{content:'\e0b3'}.oi-resize-both:before{content:'\e0b4'}.oi-resize-height:before{content:'\e0b5'}.oi-resize-width:before{content:'\e0b6'}.oi-rss-alt:before{content:'\e0b7'}.oi-rss:before{content:'\e0b8'}.oi-script:before{content:'\e0b9'}.oi-share-boxed:before{content:'\e0ba'}.oi-share:before{content:'\e0bb'}.oi-shield:before{content:'\e0bc'}.oi-signal:before{content:'\e0bd'}.oi-signpost:before{content:'\e0be'}.oi-sort-ascending:before{content:'\e0bf'}.oi-sort-descending:before{content:'\e0c0'}.oi-spreadsheet:before{content:'\e0c1'}.oi-star:before{content:'\e0c2'}.oi-sun:before{content:'\e0c3'}.oi-tablet:before{content:'\e0c4'}.oi-tag:before{content:'\e0c5'}.oi-tags:before{content:'\e0c6'}.oi-target:before{content:'\e0c7'}.oi-task:before{content:'\e0c8'}.oi-terminal:before{content:'\e0c9'}.oi-text:before{content:'\e0ca'}.oi-thumb-down:before{content:'\e0cb'}.oi-thumb-up:before{content:'\e0cc'}.oi-timer:before{content:'\e0cd'}.oi-transfer:before{content:'\e0ce'}.oi-trash:before{content:'\e0cf'}.oi-underline:before{content:'\e0d0'}.oi-vertical-align-bottom:before{content:'\e0d1'}.oi-vertical-align-center:before{content:'\e0d2'}.oi-vertical-align-top:before{content:'\e0d3'}.oi-video:before{content:'\e0d4'}.oi-volume-high:before{content:'\e0d5'}.oi-volume-low:before{content:'\e0d6'}.oi-volume-off:before{content:'\e0d7'}.oi-warning:before{content:'\e0d8'}.oi-wifi:before{content:'\e0d9'}.oi-wrench:before{content:'\e0da'}.oi-x:before{content:'\e0db'}.oi-yen:before{content:'\e0dc'}.oi-zoom-in:before{content:'\e0dd'}.oi-zoom-out:before{content:'\e0de'} \ No newline at end of file diff --git a/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.eot b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.eot new file mode 100644 index 0000000..f98177d Binary files /dev/null and b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.eot differ diff --git a/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.otf b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.otf new file mode 100644 index 0000000..f6bd684 Binary files /dev/null and b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.otf differ diff --git a/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.svg b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.svg new file mode 100644 index 0000000..32b2c4e --- /dev/null +++ b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.svg @@ -0,0 +1,543 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<!-- +2014-7-1: Created. +--> +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +Created by FontForge 20120731 at Tue Jul 1 20:39:22 2014 + By P.J. Onori +Created by P.J. Onori with FontForge 2.0 (http://fontforge.sf.net) +</metadata> +<defs> +<font id="open-iconic" horiz-adv-x="800" > + <font-face + font-family="Icons" + font-weight="400" + font-stretch="normal" + units-per-em="800" + panose-1="2 0 5 3 0 0 0 0 0 0" + ascent="800" + descent="0" + bbox="-0.5 -101 802 800.126" + underline-thickness="50" + underline-position="-100" + unicode-range="U+E000-E0DE" + /> + <missing-glyph /> + <glyph glyph-name="" unicode="" +d="M300 700h500v-700h-500v100h400v500h-400v100zM400 500l200 -150l-200 -150v100h-400v100h400v100z" /> + <glyph glyph-name="1" unicode="" +d="M300 700h500v-700h-500v100h400v500h-400v100zM200 500v-100h400v-100h-400v-100l-200 150z" /> + <glyph glyph-name="2" unicode="" +d="M350 700c193 0 350 -157 350 -350v-50h100l-200 -200l-200 200h100v50c0 138 -112 250 -250 250s-250 -112 -250 -250c0 193 157 350 350 350z" /> + <glyph glyph-name="3" unicode="" +d="M450 700c193 0 350 -157 350 -350c0 138 -112 250 -250 250s-250 -112 -250 -250v-50h100l-200 -200l-200 200h100v50c0 193 157 350 350 350z" /> + <glyph glyph-name="4" unicode="" +d="M0 700h800v-100h-800v100zM100 500h600v-100h-600v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" /> + <glyph glyph-name="5" unicode="" +d="M0 700h800v-100h-800v100zM0 500h600v-100h-600v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" /> + <glyph glyph-name="6" unicode="" +d="M0 700h800v-100h-800v100zM200 500h600v-100h-600v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" /> + <glyph glyph-name="7" unicode="" +d="M400 700c75 0 146 -23 206 -59l-75 -225l-322 234c57 31 122 50 191 50zM125 588l191 -138l-310 -222c-4 24 -6 47 -6 72c0 114 49 215 125 288zM688 575c69 -72 112 -168 112 -275c0 -35 -8 -68 -16 -100h-218zM216 253l112 -347c-128 23 -232 109 -287 222zM372 100 +h372c-64 -109 -177 -185 -310 -197z" /> + <glyph glyph-name="8" unicode="" horiz-adv-x="600" +d="M200 800h100v-500h200l-247 -300l-253 300h200v500z" /> + <glyph glyph-name="9" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 700v-300h-200l300 -300l300 300h-200v300h-200z" /> + <glyph glyph-name="a" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300l300 -300v200h300v200h-300v200z" /> + <glyph glyph-name="b" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700v-200h-300v-200h300v-200l300 300z" /> + <glyph glyph-name="c" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300h200v-300h200v300h200z" /> + <glyph glyph-name="d" unicode="" +d="M300 600v-200h500v-100h-500v-200l-300 247z" /> + <glyph glyph-name="e" unicode="" +d="M500 600l300 -247l-300 -253v200h-500v100h500v200z" /> + <glyph glyph-name="f" unicode="" horiz-adv-x="600" +d="M200 800h200v-500h200l-297 -300l-303 300h200v500z" /> + <glyph glyph-name="10" unicode="" +d="M300 700v-200h500v-200h-500v-200l-300 297z" /> + <glyph glyph-name="11" unicode="" +d="M500 700l300 -297l-300 -303v200h-500v200h500v200z" /> + <glyph glyph-name="12" unicode="" horiz-adv-x="600" +d="M297 800l303 -300h-200v-500h-200v500h-200z" /> + <glyph glyph-name="13" unicode="" horiz-adv-x="600" +d="M247 800l253 -300h-200v-500h-100v500h-200z" /> + <glyph glyph-name="14" unicode="" +d="M400 800h100v-800h-100v800zM200 700h100v-600h-100v600zM600 600h100v-400h-100v400zM0 500h100v-200h-100v200z" /> + <glyph glyph-name="15" unicode="" +d="M116 600l72 -72c-54 -54 -88 -126 -88 -209s34 -159 88 -213l-72 -72c-72 72 -116 175 -116 285s44 209 116 281zM684 600c72 -72 116 -171 116 -281s-44 -213 -116 -285l-72 72c54 54 88 130 88 213s-34 155 -88 209zM259 460l69 -72c-18 -18 -28 -41 -28 -69 +s10 -54 28 -72l-69 -72c-36 36 -59 89 -59 144s23 105 59 141zM541 459c36 -36 59 -85 59 -140s-23 -108 -59 -144l-69 72c18 18 28 44 28 72s-10 51 -28 69z" /> + <glyph glyph-name="16" unicode="" horiz-adv-x="400" +d="M200 800c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM100 319c31 -11 65 -19 100 -19s68 8 100 19v-319l-100 100l-100 -100v319z" /> + <glyph glyph-name="17" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300c0 -66 21 -126 56 -175l419 419c-49 35 -109 56 -175 56zM644 575l-419 -419c49 -35 109 -56 175 -56c166 0 300 134 300 300 +c0 66 -21 126 -56 175z" /> + <glyph glyph-name="18" unicode="" +d="M0 700h100v-600h700v-100h-800v700zM500 700h200v-500h-200v500zM200 500h200v-300h-200v300z" /> + <glyph glyph-name="19" unicode="" +d="M397 800c13 1 23 -4 34 -13c2 -2 214 -254 241 -287h128v-100h-100v-366c0 -18 -16 -34 -34 -34h-532c-18 0 -34 16 -34 34v366h-100v100h128l234 281c9 11 22 18 35 19zM400 672l-144 -172h288zM250 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50 +v100c0 28 -22 50 -50 50zM550 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50v100c0 28 -22 50 -50 50z" /> + <glyph glyph-name="1a" unicode="" +d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9zM100 600v-400h500v400h-500z" /> + <glyph glyph-name="1b" unicode="" +d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9z" /> + <glyph glyph-name="1c" unicode="" +d="M92 650c0 23 19 50 45 50h3h5h5h500c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-141c9 -17 120 -231 166 -309c16 -26 34 -61 34 -106c0 -39 -15 -77 -41 -103h-3c-26 -25 -62 -41 -100 -41h-512c-39 0 -77 15 -103 41s-41 64 -41 103c0 46 18 80 34 106 +c46 78 157 292 166 309v141h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51zM500 600h-200v-162l-6 -10s-63 -123 -119 -228h450c-56 105 -119 228 -119 228l-6 10v162z" /> + <glyph glyph-name="1d" unicode="" +d="M400 800c110 0 200 -90 200 -200c0 -104 52 -198 134 -266c41 -34 66 -82 66 -134h-800c0 52 25 100 66 134c82 68 134 162 134 266c0 110 90 200 200 200zM300 100h200c0 -55 -45 -100 -100 -100s-100 45 -100 100z" /> + <glyph glyph-name="1e" unicode="" horiz-adv-x="600" +d="M150 800h50l350 -250l-225 -147l225 -153l-350 -250h-50v250l-75 -75l-75 75l150 150l-150 150l75 75l75 -75v250zM250 650v-200l150 100zM250 350v-200l150 100z" /> + <glyph glyph-name="1f" unicode="" +d="M0 800h500c110 0 200 -90 200 -200c0 -47 -17 -91 -44 -125c85 -40 144 -125 144 -225c0 -138 -112 -250 -250 -250h-550v100c55 0 100 45 100 100v400c0 55 -45 100 -100 100v100zM300 700v-200h100c55 0 100 45 100 100s-45 100 -100 100h-100zM300 400v-300h150 +c83 0 150 67 150 150s-67 150 -150 150h-150z" /> + <glyph glyph-name="20" unicode="" horiz-adv-x="600" +d="M300 800v-300h200l-300 -500v300h-200z" /> + <glyph glyph-name="21" unicode="" +d="M100 800h300v-300l100 100l100 -100v300h50c28 0 50 -22 50 -50v-550h-550c-28 0 -50 -22 -50 -50s22 -50 50 -50h550v-100h-550c-83 0 -150 67 -150 150v550l3 19c8 39 39 70 78 78z" /> + <glyph glyph-name="22" unicode="" horiz-adv-x="400" +d="M0 800h400v-800l-200 200l-200 -200v800z" /> + <glyph glyph-name="23" unicode="" +d="M0 800h800v-100h-800v100zM0 600h300v-103h203v103h297v-591c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v591z" /> + <glyph glyph-name="24" unicode="" +d="M300 800h200c55 0 100 -45 100 -100v-100h191c6 0 9 -3 9 -9v-241c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v241c0 6 3 9 9 9h191v100c0 55 45 100 100 100zM300 700v-100h200v100h-200zM0 209c16 -6 32 -9 50 -9h700c18 0 34 3 50 9v-200c0 -6 -3 -9 -9 -9h-782 +c-6 0 -9 3 -9 9v200z" /> + <glyph glyph-name="25" unicode="" horiz-adv-x="600" +d="M300 800c58 0 110 -16 147 -53s53 -89 53 -147h-100c0 39 -11 61 -25 75s-36 25 -75 25c-35 0 -55 -10 -72 -31s-28 -55 -28 -94c0 -51 20 -107 28 -175h172v-100h-178c-14 -60 -49 -127 -113 -200h491v-100h-600v122l16 12c69 69 95 121 106 166h-122v100h125 +c-8 50 -25 106 -25 175c0 58 16 114 50 156c34 43 88 69 150 69z" /> + <glyph glyph-name="26" unicode="" +d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-700c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v700v2c0 20 15 42 34 48zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50zM350 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h300c28 0 50 22 50 50 +s-22 50 -50 50h-300zM100 400v-400h600v400h-600z" /> + <glyph glyph-name="27" unicode="" +d="M744 797l6 -3l44 -44c4 -4 3 -8 0 -12l-266 -375l-15 -13l-25 -12c-23 72 -78 127 -150 150l12 25l13 15l375 266zM266 400c74 0 134 -60 134 -134c0 -147 -119 -266 -266 -266c-48 0 -95 12 -134 34c80 46 134 133 134 232c0 74 58 134 132 134z" /> + <glyph glyph-name="28" unicode="" +d="M9 451c0 23 19 50 46 50c8 0 19 -3 26 -7l131 -66l29 22c-79 81 -1 250 118 250s197 -167 119 -250l28 -22l131 66c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-115 -56c9 -16 19 -33 25 -50h68c28 0 50 -22 50 -50s-22 -50 -50 -50h-50 +c0 -23 -2 -45 -6 -66l78 -40c21 -5 37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11l-65 35c-24 -46 -62 -86 -103 -110c-35 19 -60 45 -60 72v135v4v5v6v5v5v87c0 28 -22 50 -50 50c-24 0 -45 -17 -50 -40c1 -3 1 -8 1 -11s0 -8 -1 -11v-82v-4v-5v-144 +c0 -28 -24 -53 -59 -72c-41 25 -79 64 -103 110l-66 -35c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49l78 40c-4 21 -6 43 -6 66h-50h-5c-28 0 -50 22 -50 50c0 26 22 50 50 50h5h69c6 17 16 34 25 50l-116 56c-16 7 -28 27 -28 45z" /> + <glyph glyph-name="29" unicode="" +d="M600 700h91c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-91v600zM210 503l290 147v-500l-250 125v-3c-15 0 -25 -8 -28 -22l75 -178c11 -25 0 -58 -25 -69s-58 0 -69 25l-103 272h-91c-6 0 -9 3 -9 9v182c0 6 3 9 9 9h182z" /> + <glyph glyph-name="2a" unicode="" +d="M9 800h682c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM100 700v-200h500v200h-500zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-300h100v300h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" /> + <glyph glyph-name="2b" unicode="" +d="M0 800h700v-200h-700v200zM0 500h700v-491c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v491zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" /> + <glyph glyph-name="2c" unicode="" +d="M409 800h182c6 0 10 -4 12 -9l94 -182c2 -5 6 -9 12 -9h82c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v441c0 83 67 150 150 150h141c6 0 10 4 12 9l94 182c2 5 6 9 12 9zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z +M500 500c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM500 400c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="2d" unicode="" +d="M0 600h800l-400 -400z" /> + <glyph glyph-name="2e" unicode="" horiz-adv-x="400" +d="M400 800v-800l-400 400z" /> + <glyph glyph-name="2f" unicode="" horiz-adv-x="400" +d="M0 800l400 -400l-400 -400v800z" /> + <glyph glyph-name="30" unicode="" +d="M400 600l400 -400h-800z" /> + <glyph glyph-name="31" unicode="" +d="M0 550c0 23 20 50 46 50h3h5h4h200c17 0 37 -13 44 -28l38 -72h444c14 0 19 -12 15 -25l-81 -250c-4 -13 -21 -25 -35 -25h-350c-14 0 -30 12 -34 25c-27 83 -54 167 -81 250l-10 25h-150c-2 0 -5 -1 -7 -1c-28 0 -51 23 -51 51zM358 100c28 0 50 -22 50 -50 +s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM658 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="32" unicode="" +d="M0 700h500v-100h-300v-300h-100l-100 -100v500zM300 500h500v-500l-100 100h-400v400z" /> + <glyph glyph-name="33" unicode="" +d="M641 700l143 -141l-493 -493c-71 76 -146 148 -219 222l-72 71l141 141c50 -51 101 -101 153 -150c116 117 234 231 347 350z" /> + <glyph glyph-name="34" unicode="" +d="M150 600l250 -250l250 250l150 -150l-400 -400l-400 400z" /> + <glyph glyph-name="35" unicode="" horiz-adv-x="600" +d="M400 800l150 -150l-250 -250l250 -250l-150 -150l-400 400z" /> + <glyph glyph-name="36" unicode="" horiz-adv-x="600" +d="M150 800l400 -400l-400 -400l-150 150l250 250l-250 250z" /> + <glyph glyph-name="37" unicode="" +d="M400 600l400 -400l-150 -150l-250 250l-250 -250l-150 150z" /> + <glyph glyph-name="38" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM600 622l-250 -250l-100 100l-72 -72l172 -172l322 322z" /> + <glyph glyph-name="39" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM250 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" /> + <glyph glyph-name="3a" unicode="" +d="M350 800c28 0 50 -22 50 -50v-50h75c14 0 25 -11 25 -25v-75h-300v75c0 14 11 25 25 25h75v50c0 28 22 50 50 50zM25 700h75v-200h500v200h75c14 0 25 -11 25 -25v-650c0 -14 -11 -25 -25 -25h-650c-14 0 -25 11 -25 25v650c0 14 11 25 25 25z" /> + <glyph glyph-name="3b" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM350 600h100v-181c23 -24 47 -47 72 -69l-72 -72c-27 30 -55 59 -84 88l-16 12 +v222z" /> + <glyph glyph-name="3c" unicode="" +d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-191v50c0 83 -67 150 -150 150s-150 -67 -150 -150v-50h-272c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM434 400h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1 +v-150h150l-200 -200l-200 200h150v150v2c0 20 15 42 34 48z" /> + <glyph glyph-name="3d" unicode="" +d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-141l-200 200l-200 -200h-222c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM450 350l250 -250h-200v-50c0 -28 -22 -50 -50 -50s-50 22 -50 50v50h-200z" /> + <glyph glyph-name="3e" unicode="" +d="M450 700c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200s90 200 200 200c23 114 129 200 250 200z" /> + <glyph glyph-name="3f" unicode="" +d="M250 800c82 0 154 -40 200 -100c-143 0 -270 -85 -325 -209c-36 -10 -70 -25 -100 -47c-16 33 -25 67 -25 106c0 138 112 250 250 250zM450 600c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200 +s90 200 200 200c23 114 129 200 250 200z" /> + <glyph glyph-name="40" unicode="" +d="M500 700h100l-300 -600h-100zM100 600h100l-100 -200l100 -200h-100l-100 200zM600 600h100l100 -200l-100 -200h-100l100 200z" /> + <glyph glyph-name="41" unicode="" +d="M350 800h100l50 -119l28 -12l119 50l72 -72l-50 -119l12 -28l119 -50v-100l-119 -50l-12 -28l50 -119l-72 -72l-119 50l-28 -12l-50 -119h-100l-50 119l-28 12l-119 -50l-72 72l50 119l-12 28l-119 50v100l119 50l12 28l-50 119l72 72l119 -50l28 12zM400 550 +c-83 0 -150 -67 -150 -150s67 -150 150 -150s150 67 150 150s-67 150 -150 150z" /> + <glyph glyph-name="42" unicode="" +d="M0 800h800v-200h-800v200zM200 500h400l-200 -200zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="43" unicode="" +d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM500 600v-400l-200 200z" /> + <glyph glyph-name="44" unicode="" +d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM300 600l200 -200l-200 -200v400z" /> + <glyph glyph-name="45" unicode="" +d="M0 800h800v-100h-800v100zM400 500l200 -200h-400zM0 200h800v-200h-800v200z" /> + <glyph glyph-name="46" unicode="" +d="M150 700c83 0 150 -67 150 -150v-50h100v50c0 83 67 150 150 150s150 -67 150 -150s-67 -150 -150 -150h-50v-100h50c83 0 150 -67 150 -150s-67 -150 -150 -150s-150 67 -150 150v50h-100v-50c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150h50v100h-50 +c-83 0 -150 67 -150 150s67 150 150 150zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h50v50c0 28 -22 50 -50 50zM550 600c-28 0 -50 -22 -50 -50v-50h50c28 0 50 22 50 50s-22 50 -50 50zM300 400v-100h100v100h-100zM150 200c-28 0 -50 -22 -50 -50s22 -50 50 -50 +s50 22 50 50v50h-50zM500 200v-50c0 -28 22 -50 50 -50s50 22 50 50s-22 50 -50 50h-50z" /> + <glyph glyph-name="47" unicode="" +d="M0 791c0 5 4 9 9 9h782c6 0 9 -4 9 -10v-790l-200 200h-591c-6 0 -9 3 -9 9v582z" /> + <glyph glyph-name="48" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM600 600l-100 -300l-300 -100l100 300zM400 450c-28 0 -50 -22 -50 -50 +s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="49" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700v-600c166 0 300 134 300 300s-134 300 -300 300z" /> + <glyph glyph-name="4a" unicode="" +d="M0 800h800v-100h-800v100zM0 600h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100zM750 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="4b" unicode="" +d="M25 700h750c14 0 25 -11 25 -25v-75h-800v75c0 14 11 25 25 25zM0 500h800v-375c0 -14 -11 -25 -25 -25h-750c-14 0 -25 11 -25 25v375zM100 300v-100h100v100h-100zM300 300v-100h100v100h-100z" /> + <glyph glyph-name="4c" unicode="" +d="M100 800h100v-100h450l100 100l50 -50l-100 -100v-450h100v-100h-100v-100h-100v100h-500v500h-100v100h100v100zM200 600v-350l350 350h-350zM600 550l-350 -350h350v350z" /> + <glyph glyph-name="4d" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z +M200 452c0 20 15 42 34 48h3h3h8c12 0 28 -7 36 -16l91 -90l25 6c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100l6 25l-90 91c-9 8 -16 24 -16 36zM550 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="4e" unicode="" +d="M300 800h200v-300h200l-300 -300l-300 300h200v300zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="4f" unicode="" +d="M0 800h800v-100h-800v100zM400 600l300 -300h-200v-300h-200v300h-200z" /> + <glyph glyph-name="50" unicode="" +d="M200 700h600v-600h-600l-200 300zM350 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" /> + <glyph glyph-name="51" unicode="" +d="M400 700c220 0 400 -180 400 -400h-100c0 166 -134 300 -300 300s-300 -134 -300 -300h-100c0 220 180 400 400 400zM341 491l59 -88l59 88c81 -25 141 -101 141 -191c0 -110 -90 -200 -200 -200s-200 90 -200 200c0 90 60 166 141 191z" /> + <glyph glyph-name="52" unicode="" +d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300zM100 600v-100h100v100h-100zM100 400v-100h100v100h-100zM100 200v-100h400v100h-400z" /> + <glyph glyph-name="53" unicode="" horiz-adv-x="600" +d="M200 700h100v-100h75c30 0 58 -6 81 -22s44 -44 44 -78v-100h-100v94c-4 3 -13 6 -25 6h-250c-14 0 -25 -11 -25 -25v-50c0 -15 20 -40 34 -44l257 -65c66 -16 109 -73 109 -141v-50c0 -68 -57 -125 -125 -125h-75v-100h-100v100h-75c-30 0 -58 6 -81 22s-44 44 -44 78 +v100h100v-94c4 -3 13 -6 25 -6h250c14 0 25 11 25 25v50c0 15 -20 40 -34 44l-257 65c-66 16 -109 73 -109 141v50c0 68 57 125 125 125h75v100z" /> + <glyph glyph-name="54" unicode="" +d="M0 700h300v-300l-300 -300v600zM500 700h300v-300l-300 -300v600z" /> + <glyph glyph-name="55" unicode="" +d="M300 700v-600h-300v300zM800 700v-600h-300v300z" /> + <glyph glyph-name="56" unicode="" +d="M300 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300zM800 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300z" /> + <glyph glyph-name="57" unicode="" +d="M0 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300zM500 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300z" /> + <glyph glyph-name="58" unicode="" horiz-adv-x="600" +d="M300 800l34 -34c11 -11 266 -270 266 -488c0 -165 -135 -300 -300 -300s-300 135 -300 300c0 218 255 477 266 488zM150 328c-28 0 -50 -22 -50 -50c0 -110 90 -200 200 -200c28 0 50 22 50 50s-22 50 -50 50c-55 0 -100 45 -100 100c0 28 -22 50 -50 50z" /> + <glyph glyph-name="59" unicode="" +d="M400 800l400 -500h-800zM0 200h800v-200h-800v200z" /> + <glyph glyph-name="5a" unicode="" horiz-adv-x="600" +d="M300 800l300 -300h-600zM0 300h600l-300 -300z" /> + <glyph glyph-name="5b" unicode="" +d="M0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200z" /> + <glyph glyph-name="5c" unicode="" +d="M0 700h800v-100l-400 -200l-400 200v100zM0 500l400 -200l400 200v-400h-800v400z" /> + <glyph glyph-name="5d" unicode="" +d="M400 800l400 -200v-600h-800v600zM400 688l-300 -150v-188l300 -150l300 150v188zM200 500h400v-100l-200 -100l-200 100v100z" /> + <glyph glyph-name="5e" unicode="" +d="M600 700c69 0 134 -19 191 -50l-16 -106c-49 35 -109 56 -175 56c-131 0 -240 -84 -281 -200h331l-16 -100h-334c0 -36 8 -68 19 -100h297l-16 -100h-222c55 -61 133 -100 222 -100c78 0 147 30 200 78v-122c-59 -35 -127 -56 -200 -56c-147 0 -274 82 -344 200h-256 +l19 100h197c-8 32 -16 66 -16 100h-200l25 100h191c45 172 198 300 384 300z" /> + <glyph glyph-name="5f" unicode="" +d="M0 700h700v-100h-700v100zM0 500h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100z" /> + <glyph glyph-name="60" unicode="" +d="M0 800h800v-100h-800v100zM200 600h400l-200 -200zM0 200h800v-200h-800v200z" /> + <glyph glyph-name="61" unicode="" +d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM200 600l200 -200l-200 -200v400z" /> + <glyph glyph-name="62" unicode="" +d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM600 600v-400l-200 200z" /> + <glyph glyph-name="63" unicode="" +d="M0 800h800v-200h-800v200zM400 400l200 -200h-400zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="64" unicode="" +d="M0 800h200v-100h-100v-600h600v100h100v-200h-800v800zM400 800h400v-400l-150 150l-250 -250l-100 100l250 250z" /> + <glyph glyph-name="65" unicode="" +d="M403 700c247 0 397 -300 397 -300s-150 -300 -397 -300c-253 0 -403 300 -403 300s150 300 403 300zM400 600c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM400 500c10 0 19 -3 28 -6c-16 -8 -28 -24 -28 -44c0 -28 22 -50 50 -50 +c20 0 36 12 44 28c3 -9 6 -18 6 -28c0 -55 -45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="66" unicode="" horiz-adv-x="900" +d="M331 700h3h3c3 1 7 1 10 1c12 0 29 -8 37 -17l94 -93l66 65c57 57 155 57 212 0c58 -58 58 -154 0 -212l-65 -66l93 -94c10 -8 18 -25 18 -38c0 -28 -22 -50 -50 -50c-13 0 -32 9 -40 20l-62 65l-381 -381h-269v272l375 381l-63 63c-9 8 -16 24 -16 36c0 20 16 42 35 48z +M447 481l-313 -315l128 -132l316 316z" /> + <glyph glyph-name="67" unicode="" +d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300z" /> + <glyph glyph-name="68" unicode="" +d="M200 800c0 0 200 -100 200 -300s-298 -302 -200 -500c0 0 -200 100 -200 300s300 300 200 500zM500 500c0 0 200 -100 200 -300c0 -150 -60 -200 -100 -200h-300c0 200 300 300 200 500z" /> + <glyph glyph-name="69" unicode="" +d="M0 800h100v-800h-100v800zM200 800h300v-100h300l-200 -203l200 -197h-400v100h-200v400z" /> + <glyph glyph-name="6a" unicode="" horiz-adv-x="400" +d="M150 800h150l-100 -200h200l-150 -300h150l-300 -300l-100 300h134l66 200h-200z" /> + <glyph glyph-name="6b" unicode="" +d="M0 800h300v-100h500v-100h-800v200zM0 500h800v-450c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v450z" /> + <glyph glyph-name="6c" unicode="" +d="M150 800c83 0 150 -67 150 -150c0 -66 -41 -121 -100 -141v-118c15 5 33 9 50 9h200c28 0 50 22 50 50v59c-59 20 -100 75 -100 141c0 83 67 150 150 150s150 -67 150 -150c0 -66 -41 -121 -100 -141v-59c0 -82 -68 -150 -150 -150h-200c-14 0 -25 -7 -34 -16 +c50 -24 84 -74 84 -134c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 66 41 121 100 141v218c-59 20 -100 75 -100 141c0 83 67 150 150 150z" /> + <glyph glyph-name="6d" unicode="" +d="M0 800h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400zM500 400l150 -150l150 150v-400h-400l150 150l-150 150z" /> + <glyph glyph-name="6e" unicode="" +d="M100 800l150 -150l150 150v-400h-400l150 150l-150 150zM400 400h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400z" /> + <glyph glyph-name="6f" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700c-56 0 -108 -17 -153 -44l22 -19c33 -18 13 -48 -13 -59c-30 -13 -77 10 -65 -41c13 -55 -27 -3 -47 -15c-42 -26 49 -152 31 -156l-59 34c-8 0 -13 -5 -16 -10 +c1 -30 10 -57 19 -84c28 -11 77 -2 100 -25c47 -28 97 -115 75 -159c34 -13 68 -22 106 -22c101 0 193 48 247 125c3 24 -8 44 -50 44c-69 0 -156 13 -153 97c2 46 101 108 66 143c-30 30 12 39 12 66c0 37 -65 32 -69 50s20 36 41 56c-30 10 -60 19 -94 19zM631 591 +c-38 -11 -94 -35 -87 -53c6 -15 52 -1 65 -13c11 -10 16 -59 44 -31l22 22v3c-11 26 -26 50 -44 72z" /> + <glyph glyph-name="70" unicode="" +d="M703 800l97 -100l-400 -400l-100 100l-200 -203l-100 100l300 303l100 -100zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="71" unicode="" +d="M0 700h100v-100h-100v100zM200 700h100v-100h-100v100zM400 700h100v-100h-100v100zM600 700h100v-100h-100v100zM0 500h100v-100h-100v100zM200 500h100v-100h-100v100zM400 500h100v-100h-100v100zM600 500h100v-100h-100v100zM0 300h100v-100h-100v100zM200 300h100 +v-100h-100v100zM400 300h100v-100h-100v100zM600 300h100v-100h-100v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100zM600 100h100v-100h-100v100z" /> + <glyph glyph-name="72" unicode="" +d="M0 800h200v-200h-200v200zM300 800h200v-200h-200v200zM600 800h200v-200h-200v200zM0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200zM0 200h200v-200h-200v200zM300 200h200v-200h-200v200zM600 200h200v-200h-200v200z" /> + <glyph glyph-name="73" unicode="" +d="M0 800h300v-300h-300v300zM500 800h300v-300h-300v300zM0 300h300v-300h-300v300zM500 300h300v-300h-300v300z" /> + <glyph glyph-name="74" unicode="" +d="M19 800h662c11 0 19 -8 19 -19v-331c0 -28 -22 -50 -50 -50h-600c-28 0 -50 22 -50 50v331c0 11 8 19 19 19zM0 309c16 -6 32 -9 50 -9h600c18 0 34 3 50 9v-290c0 -11 -8 -19 -19 -19h-662c-11 0 -19 8 -19 19v290zM550 200c-28 0 -50 -22 -50 -50s22 -50 50 -50 +s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="75" unicode="" +d="M0 700h300v-100h-50c-28 0 -50 -22 -50 -50v-150h300v150c0 28 -22 50 -50 50h-50v100h300v-100h-50c-28 0 -50 -22 -50 -50v-400c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50v150h-300v-150c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50 +v400c0 28 -22 50 -50 50h-50v100z" /> + <glyph glyph-name="76" unicode="" +d="M400 700c165 0 300 -135 300 -300v-100h50c28 0 50 -22 50 -50v-200c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v350c0 111 -89 200 -200 200s-200 -89 -200 -200v-350c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v200c0 28 22 50 50 50h50v100 +c0 165 135 300 300 300z" /> + <glyph glyph-name="77" unicode="" +d="M0 500c0 109 91 200 200 200s200 -91 200 -200c0 109 91 200 200 200s200 -91 200 -200c0 -55 -23 -105 -59 -141l-341 -340l-341 340c-36 36 -59 86 -59 141z" /> + <glyph glyph-name="78" unicode="" +d="M400 700l400 -300l-100 3v-403h-200v200h-200v-200h-200v400h-100z" /> + <glyph glyph-name="79" unicode="" +d="M0 800h800v-800h-800v800zM100 700v-300l100 100l400 -400h100v100l-200 200l100 100l100 -100v300h-600z" /> + <glyph glyph-name="7a" unicode="" +d="M19 800h762c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-762c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 600v-300h100l100 -100h200l100 100h100v300h-600z" /> + <glyph glyph-name="7b" unicode="" +d="M200 600c80 0 142 -56 200 -122c58 66 119 122 200 122c131 0 200 -101 200 -200s-69 -200 -200 -200c-81 0 -142 56 -200 122c-58 -66 -121 -122 -200 -122c-131 0 -200 101 -200 200s69 200 200 200zM200 500c-74 0 -100 -54 -100 -100s26 -100 100 -100 +c42 0 88 47 134 100c-46 53 -92 100 -134 100zM600 500c-43 0 -88 -47 -134 -100c46 -53 91 -100 134 -100c74 0 100 54 100 100s-26 100 -100 100z" /> + <glyph glyph-name="7c" unicode="" horiz-adv-x="400" +d="M300 800c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100zM150 550c83 0 150 -69 150 -150c0 -66 -100 -214 -100 -250c0 -28 22 -50 50 -50s50 22 50 50h100c0 -83 -67 -150 -150 -150s-150 64 -150 150s100 222 100 250s-22 50 -50 50 +s-50 -22 -50 -50h-100c0 83 67 150 150 150z" /> + <glyph glyph-name="7d" unicode="" +d="M200 800h500v-100h-122c-77 -197 -156 -392 -234 -588l-6 -12h162v-100h-500v100h122c77 197 156 392 234 588l7 12h-163v100z" /> + <glyph glyph-name="7e" unicode="" +d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" /> + <glyph glyph-name="7f" unicode="" +d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" /> + <glyph glyph-name="80" unicode="" +d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" /> + <glyph glyph-name="81" unicode="" +d="M550 800c138 0 250 -112 250 -250s-112 -250 -250 -250c-16 0 -32 0 -47 3l-3 -3v-100h-200v-200h-300v200l303 303c-3 15 -3 31 -3 47c0 138 112 250 250 250zM600 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" /> + <glyph glyph-name="82" unicode="" +d="M134 600h3h4h4h5h500c28 0 50 -22 50 -50v-350h100v-150c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v150h100v350v2c0 20 15 42 34 48zM200 500v-300h100v-100h200v100h100v300h-400z" /> + <glyph glyph-name="83" unicode="" +d="M0 800h400v-400h-400v400zM500 600h100v-400h-400v100h300v300zM700 400h100v-400h-400v100h300v300z" /> + <glyph glyph-name="84" unicode="" horiz-adv-x="600" +d="M337 694c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-300 -150c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49zM437 544c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-400 -200c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50 +c0 21 16 44 37 49zM437 344c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-106 -56c24 -4 43 -26 43 -50c0 -28 -23 -51 -51 -51c-2 0 -6 1 -8 1h-200c-26 1 -48 24 -48 50c0 16 12 36 26 44zM151 -50c0 23 20 50 46 50h3h4h5h100c28 0 50 -22 50 -50 +s-22 -50 -50 -50h-100c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" /> + <glyph glyph-name="85" unicode="" +d="M199 800h100v-200h-200v100h100v100zM586 797h1c18 1 38 1 56 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0l-44 -44 +c-8 -13 -27 -24 -42 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l43 44c32 33 72 53 128 56zM208 490c4 5 14 16 22 16h3c2 0 6 1 8 1c28 0 50 -22 50 -50c0 -11 -6 -27 -14 -35l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0l44 44c8 13 27 24 42 24 +c28 0 50 -22 50 -50c0 -15 -11 -35 -24 -43l-43 -44c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281zM499 200h200v-100h-100v-100h-100v200z" /> + <glyph glyph-name="86" unicode="" +d="M586 797c18 1 39 1 57 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-62 -62 -132 -81 -182 -78s-69 17 -84 25s-26 27 -26 44c0 28 22 51 50 51c8 0 19 -3 26 -7c0 0 15 -11 41 -13s62 3 106 47l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0 +c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43c32 33 72 53 128 56zM386 566c50 -2 64 -17 85 -22s37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11c0 0 -19 9 -47 10s-63 -4 -103 -44l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0 +c8 13 27 24 42 24c28 0 50 -22 50 -50c0 -15 -10 -35 -23 -43c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281l150 150c60 60 128 78 178 76z" /> + <glyph glyph-name="87" unicode="" +d="M0 700h300v-300h-300v300zM400 700h400v-100h-400v100zM400 500h300v-100h-300v100zM0 300h300v-300h-300v300zM400 300h400v-100h-400v100zM400 100h300v-100h-300v100z" /> + <glyph glyph-name="88" unicode="" +d="M50 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 700h600v-100h-600v100zM50 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 500h600v-100h-600v100zM50 300c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50 +s22 50 50 50zM200 300h600v-100h-600v100zM50 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 100h600v-100h-600v100z" /> + <glyph glyph-name="89" unicode="" +d="M800 800l-400 -800l-100 300l-300 100z" /> + <glyph glyph-name="8a" unicode="" horiz-adv-x="600" +d="M300 700c110 0 200 -90 200 -200v-100h100v-400h-600v400h100v100c0 110 90 200 200 200zM300 600c-56 0 -100 -44 -100 -100v-100h200v100c0 56 -44 100 -100 100z" /> + <glyph glyph-name="8b" unicode="" horiz-adv-x="600" +d="M300 800c110 0 200 -90 200 -200v-200h100v-400h-600v400h400v200c0 56 -44 100 -100 100s-100 -44 -100 -100h-100c0 110 90 200 200 200z" /> + <glyph glyph-name="8c" unicode="" +d="M400 700v-100c-111 0 -200 -89 -200 -200h100l-150 -200l-150 200h100c0 165 135 300 300 300zM650 600l150 -200h-100c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-100z" /> + <glyph glyph-name="8d" unicode="" +d="M100 800h600v-300h100l-150 -250l-150 250h100v200h-400v-100h-100v200zM150 550l150 -250h-100v-200h400v100h100v-200h-600v300h-100z" /> + <glyph glyph-name="8e" unicode="" +d="M600 700l200 -150l-200 -150v100h-500v-100h-100v100c0 55 45 100 100 100h500v100zM200 300v-100h500v100h100v-100c0 -55 -45 -100 -100 -100h-500v-100l-200 150z" /> + <glyph glyph-name="8f" unicode="" horiz-adv-x="900" +d="M350 800c193 0 350 -157 350 -350c0 -60 -17 -117 -44 -166c5 -3 12 -8 16 -12l100 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 100c-4 3 -9 9 -12 13c-49 -26 -107 -41 -166 -41c-193 0 -350 157 -350 350s157 350 350 350zM350 200 +c142 0 250 108 250 250c0 139 -111 250 -250 250s-250 -111 -250 -250s111 -250 250 -250z" /> + <glyph glyph-name="90" unicode="" horiz-adv-x="600" +d="M300 800c166 0 300 -134 300 -300c0 -200 -300 -500 -300 -500s-300 300 -300 500c0 166 134 300 300 300zM300 700c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200z" /> + <glyph glyph-name="91" unicode="" horiz-adv-x="900" +d="M0 800h800v-541c1 -3 1 -8 1 -11s0 -7 -1 -10v-238h-800v800zM495 250c0 26 22 50 50 50h5h150v400h-600v-600h600v100h-150h-5c-28 0 -50 22 -50 50zM350 600c83 0 150 -67 150 -150c0 -100 -150 -250 -150 -250s-150 150 -150 250c0 83 67 150 150 150zM350 500 +c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="92" unicode="" horiz-adv-x="600" +d="M0 700h200v-600h-200v600zM400 700h200v-600h-200v600z" /> + <glyph glyph-name="93" unicode="" horiz-adv-x="600" +d="M0 700l600 -300l-600 -300v600z" /> + <glyph glyph-name="94" unicode="" horiz-adv-x="600" +d="M300 700c166 0 300 -134 300 -300s-134 -300 -300 -300s-300 134 -300 300s134 300 300 300z" /> + <glyph glyph-name="95" unicode="" +d="M400 700v-600l-400 300zM400 400l400 300v-600z" /> + <glyph glyph-name="96" unicode="" +d="M0 700l400 -300l-400 -300v600zM400 100v600l400 -300z" /> + <glyph glyph-name="97" unicode="" +d="M0 700h200v-600h-200v600zM200 400l500 300v-600z" /> + <glyph glyph-name="98" unicode="" +d="M0 700l500 -300l-500 -300v600zM500 100v600h200v-600h-200z" /> + <glyph glyph-name="99" unicode="" horiz-adv-x="600" +d="M0 700h600v-600h-600v600z" /> + <glyph glyph-name="9a" unicode="" +d="M200 800h400v-200h200v-400h-200v-200h-400v200h-200v400h200v200z" /> + <glyph glyph-name="9b" unicode="" +d="M0 700h800v-100h-800v100zM0 403h800v-100h-800v100zM0 103h800v-100h-800v100z" /> + <glyph glyph-name="9c" unicode="" horiz-adv-x="600" +d="M278 700c7 2 13 4 22 4c55 0 100 -45 100 -100v-4v-200c0 -55 -45 -100 -100 -100s-100 45 -100 100v200v2c0 44 35 88 78 98zM34 500h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-50c0 -111 89 -200 200 -200s200 89 200 200v50c0 28 22 50 50 50s50 -22 50 -50v-50 +c0 -148 -109 -270 -250 -294v-106h50c55 0 100 -45 100 -100h-400c0 55 45 100 100 100h50v106c-141 24 -250 146 -250 294v50v2c0 20 15 42 34 48z" /> + <glyph glyph-name="9d" unicode="" +d="M0 500h800v-200h-800v200z" /> + <glyph glyph-name="9e" unicode="" +d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-500c0 -28 -22 -50 -50 -50h-250v-100h100c55 0 100 -45 100 -100h-600c0 55 45 100 100 100h100v100h-250c-28 0 -50 22 -50 50v500v2c0 20 15 42 34 48zM100 600v-400h600v400h-600z" /> + <glyph glyph-name="9f" unicode="" +d="M272 700c-14 -40 -22 -83 -22 -128c0 -221 179 -400 400 -400c45 0 88 8 128 22c-53 -158 -202 -272 -378 -272c-221 0 -400 179 -400 400c0 176 114 325 272 378z" /> + <glyph glyph-name="a0" unicode="" +d="M350 700l150 -150h-100v-150h150v100l150 -150l-150 -150v100h-150v-150h100l-150 -150l-150 150h100v150h-150v-100l-150 150l150 150v-100h150v150h-100z" /> + <glyph glyph-name="a1" unicode="" +d="M800 800v-550c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v206c-201 -6 -327 -27 -400 -50v-397c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v409s100 100 600 100z" /> + <glyph glyph-name="a2" unicode="" horiz-adv-x="700" +d="M499 700c51 0 102 -20 141 -59c78 -78 78 -203 0 -281l-250 -244c-48 -48 -127 -48 -175 0s-48 127 0 175l96 97l69 -69l-90 -94l-7 -3c-10 -10 -10 -28 0 -38s28 -10 38 0l250 247c37 40 39 102 0 141s-104 40 -144 0l-278 -275c-66 -69 -68 -179 0 -247 +c69 -69 181 -69 250 0l9 12l116 113l69 -69l-125 -125c-107 -107 -281 -107 -388 0s-107 281 0 388l278 272c39 39 90 59 141 59z" /> + <glyph glyph-name="a3" unicode="" +d="M600 800l200 -200l-100 -100l-200 200zM400 600l200 -200l-400 -400h-200v200z" /> + <glyph glyph-name="a4" unicode="" +d="M550 800c83 0 150 -90 150 -200s-67 -200 -150 -200c-22 0 -40 8 -59 19c6 26 9 52 9 81c0 84 -27 158 -72 212c27 52 71 88 122 88zM250 700c83 0 150 -90 150 -200s-67 -200 -150 -200s-150 90 -150 200s67 200 150 200zM725 384c44 -22 75 -66 75 -118v-166h-200v66 +c0 50 -17 96 -44 134c66 2 126 33 169 84zM75 284c45 -53 106 -84 175 -84s130 31 175 84c44 -22 75 -66 75 -118v-166h-500v166c0 52 31 96 75 118z" /> + <glyph glyph-name="a5" unicode="" +d="M400 800c110 0 200 -112 200 -250s-90 -250 -200 -250s-200 112 -200 250s90 250 200 250zM191 300c54 -61 128 -100 209 -100s155 39 209 100c106 -5 191 -92 191 -200v-100h-800v100c0 108 85 195 191 200z" /> + <glyph glyph-name="a6" unicode="" horiz-adv-x="600" +d="M19 800h462c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-462c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 700v-500h300v500h-300zM250 150c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="a7" unicode="" +d="M350 800c17 0 34 -1 50 -3v-397l-297 297c63 64 150 103 247 103zM500 694c169 -25 300 -168 300 -344c0 -193 -157 -350 -350 -350c-85 0 -161 31 -222 81l272 272v341zM91 562l237 -234l-212 -212c-70 55 -116 138 -116 234c0 84 35 158 91 212z" /> + <glyph glyph-name="a8" unicode="" +d="M92 650c0 23 20 50 46 50h3h4h5h400c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-200h100c55 0 100 -45 100 -100h-300v-300l-56 -100l-44 100v300h-300c0 55 45 100 100 100h100v200h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" /> + <glyph glyph-name="a9" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 600v-400l300 200z" /> + <glyph glyph-name="aa" unicode="" +d="M300 800h200v-300h300v-200h-300v-300h-200v300h-300v200h300v300z" /> + <glyph glyph-name="ab" unicode="" +d="M300 800h100v-400h-100v400zM172 656l62 -78l-40 -31c-58 -46 -94 -117 -94 -197c0 -139 111 -250 250 -250s250 111 250 250c0 80 -39 151 -97 197l-37 31l62 78l38 -31c82 -64 134 -164 134 -275c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 111 53 211 134 275z +" /> + <glyph glyph-name="ac" unicode="" +d="M200 800h400v-200h-400v200zM9 500h782c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-91v200h-600v-200h-91c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM200 300h400v-300h-400v300z" /> + <glyph glyph-name="ad" unicode="" +d="M0 700h100v-700h-100v700zM700 700h100v-700h-100v700zM200 600h200v-100h-200v100zM300 400h200v-100h-200v100zM400 200h200v-100h-200v100z" /> + <glyph glyph-name="ae" unicode="" +d="M325 700c42 -141 87 -280 131 -419c29 74 59 148 88 222c30 -57 58 -114 87 -172h169v-100h-231l-13 28c-37 -92 -74 -184 -112 -275c-38 129 -79 257 -119 385c-42 -133 -83 -267 -125 -400c-28 88 -56 175 -84 262h-116v100h188l9 -34l3 -6c42 137 83 273 125 409z" /> + <glyph glyph-name="af" unicode="" +d="M200 600c0 57 43 100 100 100s100 -43 100 -100c0 -28 -18 -48 -28 -72c-3 -6 -3 -16 -3 -28h231v-231c12 0 22 0 28 3c24 10 44 28 72 28c57 0 100 -43 100 -100s-43 -100 -100 -100c-28 0 -48 18 -72 28c-6 3 -16 3 -28 3v-231h-231c0 12 0 22 3 28c10 24 28 44 28 72 +c0 57 -43 100 -100 100s-100 -43 -100 -100c0 -28 18 -48 28 -72c3 -6 3 -16 3 -28h-231v600h231c0 12 0 22 -3 28c-10 24 -28 44 -28 72z" /> + <glyph glyph-name="b0" unicode="" horiz-adv-x="500" +d="M247 700c84 0 148 -20 191 -59s59 -93 59 -141c0 -117 -69 -181 -119 -225s-81 -67 -81 -150v-25h-100v25c0 117 65 181 115 225s85 67 85 150c0 25 -8 48 -28 66s-56 34 -122 34s-97 -18 -116 -37s-27 -43 -31 -69l-100 12c5 38 19 88 59 128s103 66 188 66zM197 0h100 +v-100h-100v100z" /> + <glyph glyph-name="b1" unicode="" +d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -69 -48 -127 -112 -144c-22 55 -75 94 -138 94c-20 0 -39 -5 -56 -12c-17 64 -75 112 -144 112s-127 -48 -144 -112c-17 7 -36 12 -56 12c-37 0 -71 -12 -97 -34c-33 36 -53 82 -53 134 +c0 110 90 200 200 200c23 114 129 200 250 200zM334 300h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-200c0 -28 -22 -50 -50 -50s-50 22 -50 50v200v2c0 20 15 42 34 48zM134 200h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2 +c0 20 15 42 34 48zM534 200h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2c0 20 15 42 34 48z" /> + <glyph glyph-name="b2" unicode="" +d="M600 800l200 -150l-200 -150v100h-50l-153 -191l175 -206l6 -3h22v100l200 -150l-200 -150v100h-25c-35 0 -56 12 -78 38l-166 190l-153 -190c-22 -27 -43 -38 -78 -38h-100v100h100l166 206l-163 191l-3 3h-100v100h100c34 0 56 -12 78 -38l153 -178l141 178 +c22 27 43 38 78 38h50v100z" /> + <glyph glyph-name="b3" unicode="" +d="M400 800c110 0 209 -47 281 -119l119 119v-300h-300l109 109c-54 55 -126 91 -209 91c-166 0 -300 -134 -300 -300s134 -300 300 -300c83 0 158 34 212 88l72 -72c-72 -72 -174 -116 -284 -116c-220 0 -400 180 -400 400s180 400 400 400z" /> + <glyph glyph-name="b4" unicode="" +d="M400 800h400v-400l-166 166l-400 -400l166 -166h-400v400l166 -166l400 400z" /> + <glyph glyph-name="b5" unicode="" horiz-adv-x="600" +d="M250 800l250 -300h-200v-200h200l-250 -300l-250 300h200v200h-200z" /> + <glyph glyph-name="b6" unicode="" +d="M300 600v-200h200v200l300 -250l-300 -250v200h-200v-200l-300 250z" /> + <glyph glyph-name="b7" unicode="" +d="M0 800c441 0 800 -359 800 -800h-200c0 333 -267 600 -600 600v200zM0 500c275 0 500 -225 500 -500h-200c0 167 -133 300 -300 300v200zM0 200c110 0 200 -90 200 -200h-200v200z" /> + <glyph glyph-name="b8" unicode="" +d="M100 800c386 0 700 -314 700 -700h-100c0 332 -268 600 -600 600v100zM100 600c276 0 500 -224 500 -500h-100c0 222 -178 400 -400 400v100zM100 400c165 0 300 -135 300 -300h-100c0 111 -89 200 -200 200v100zM100 200c55 0 100 -45 100 -100s-45 -100 -100 -100 +s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="b9" unicode="" +d="M300 800h400c55 0 100 -45 100 -100v-200h-400v150c0 28 -22 50 -50 50s-50 -22 -50 -50v-250h400v-300c0 -55 -45 -100 -100 -100h-500c-55 0 -100 45 -100 100v200h100v-150c0 -28 22 -50 50 -50s50 22 50 50v550c0 55 45 100 100 100z" /> + <glyph glyph-name="ba" unicode="" +d="M75 700h225v-100h-200v-500h400v100h100v-125c0 -41 -34 -75 -75 -75h-450c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM600 700l200 -200l-200 -200v100h-200c-94 0 -173 -65 -194 -153c23 199 189 353 394 353v100z" /> + <glyph glyph-name="bb" unicode="" +d="M500 700l300 -284l-300 -316v200h-100c-200 0 -348 -102 -400 -300c0 295 100 500 500 500v200z" /> + <glyph glyph-name="bc" unicode="" +d="M381 791l19 9l19 -9c127 -53 253 -108 381 -160v-31c0 -166 -67 -313 -147 -419c-40 -53 -83 -97 -125 -128s-82 -53 -128 -53s-86 22 -128 53s-85 75 -125 128c-80 107 -147 253 -147 419v31c128 52 254 107 381 160zM400 100v591l-294 -122c8 -126 58 -243 122 -328 +c35 -46 73 -86 106 -110s62 -31 66 -31z" /> + <glyph glyph-name="bd" unicode="" +d="M600 800h100v-800h-100v800zM400 700h100v-700h-100v700zM200 500h100v-500h-100v500zM0 300h100v-300h-100v300z" /> + <glyph glyph-name="be" unicode="" +d="M300 800h100v-200h200l100 -100l-100 -100h-200v-400h-100v500h-200l-100 100l100 100h200v100z" /> + <glyph glyph-name="bf" unicode="" +d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h200v-100h-200v100zM400 600h300v-100h-300v100zM400 400h400v-100h-400v100z" /> + <glyph glyph-name="c0" unicode="" +d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h400v-100h-400v100zM400 600h300v-100h-300v100zM400 400h200v-100h-200v100z" /> + <glyph glyph-name="c1" unicode="" +d="M75 700h650c41 0 75 -34 75 -75v-550c0 -41 -34 -75 -75 -75h-650c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM100 600v-100h100v100h-100zM300 600v-100h400v100h-400zM100 400v-100h100v100h-100zM300 400v-100h400v100h-400zM100 200v-100h100v100h-100zM300 200 +v-100h400v100h-400z" /> + <glyph glyph-name="c2" unicode="" +d="M400 800l100 -300h300l-250 -200l100 -300l-250 200l-250 -200l100 300l-250 200h300z" /> + <glyph glyph-name="c3" unicode="" +d="M400 800c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM650 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 600c110 0 200 -90 200 -200 +s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM50 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM750 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50 +s22 50 50 50zM650 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="c4" unicode="" +d="M34 800h632c18 0 34 -16 34 -34v-732c0 -18 -16 -34 -34 -34h-632c-18 0 -34 16 -34 34v732c0 18 16 34 34 34zM100 700v-500h500v500h-500zM350 150c-38 0 -63 -42 -44 -75s69 -33 88 0s-6 75 -44 75z" /> + <glyph glyph-name="c5" unicode="" +d="M0 800h300l500 -500l-300 -300l-500 500v300zM200 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" /> + <glyph glyph-name="c6" unicode="" +d="M0 600h200l300 -300l-200 -200l-300 300v200zM340 600h160l300 -300l-200 -200l-78 78l119 122zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="c7" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200 +s90 200 200 200zM400 500c-56 0 -100 -44 -100 -100s44 -100 100 -100s100 44 100 100s-44 100 -100 100z" /> + <glyph glyph-name="c8" unicode="" +d="M0 700h559l-100 -100h-359v-500h500v159l100 100v-359h-700v700zM700 700l100 -100l-400 -400l-200 200l100 100l100 -100z" /> + <glyph glyph-name="c9" unicode="" +d="M9 800h782c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM150 722l-72 -72l100 -100l-100 -100l72 -72l172 172zM400 500v-100h300v100h-300z" /> + <glyph glyph-name="ca" unicode="" +d="M0 800h800v-200h-50c0 55 -45 100 -100 100h-150v-550c0 -28 22 -50 50 -50h50v-100h-400v100h50c28 0 50 22 50 50v550h-150c-55 0 -100 -45 -100 -100h-50v200z" /> + <glyph glyph-name="cb" unicode="" +d="M0 700h100v-400h-100v400zM200 700h350c21 0 39 -13 47 -31c0 0 103 -291 103 -319s-22 -50 -50 -50h-150c-28 0 -50 -25 -50 -50s39 -158 47 -184s-5 -55 -31 -63s-52 5 -66 31s-109 219 -128 238s-44 28 -72 28v400z" /> + <glyph glyph-name="cc" unicode="" +d="M400 666c10 19 28 32 47 34l19 -3c26 -8 39 -37 31 -63s-47 -159 -47 -184s22 -50 50 -50h150c28 0 50 -22 50 -50s-103 -319 -103 -319c-8 -18 -26 -31 -47 -31h-350v400c28 0 53 9 72 28s114 212 128 238zM0 400h100v-400h-100v400z" /> + <glyph glyph-name="cd" unicode="" +d="M200 700h300v-100h-100v-6c25 -4 50 -8 72 -16l-34 -94c-28 11 -58 16 -88 16c-139 0 -250 -111 -250 -250s111 -250 250 -250s250 111 250 250c0 31 -5 60 -16 88l91 37c14 -38 25 -81 25 -125c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 176 130 323 300 347v3 +h-100v100zM700 584c0 0 -296 -348 -316 -368s-48 -20 -68 0s-20 48 0 68s384 300 384 300z" /> + <glyph glyph-name="ce" unicode="" +d="M600 700l200 -150l-200 -150v100h-600v100h600v100zM200 300v-100h600v-100h-600v-100l-200 150z" /> + <glyph glyph-name="cf" unicode="" +d="M300 800h100c55 0 100 -45 100 -100h100c55 0 100 -45 100 -100h-700c0 55 45 100 100 100h100c0 55 45 100 100 100zM100 500h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-481c0 -11 -8 -19 -19 -19h-462 +c-11 0 -19 8 -19 19v481z" /> + <glyph glyph-name="d0" unicode="" +d="M100 800h200v-400c0 -55 45 -100 100 -100s100 45 100 100v400h100v-400c0 -110 -90 -200 -200 -200h-50c-138 0 -250 90 -250 200v400zM0 100h700v-100h-700v100z" /> + <glyph glyph-name="d1" unicode="" +d="M9 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM609 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282 +c0 6 3 9 9 9zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="d2" unicode="" +d="M10 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 4 9 10 9zM610 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 5 9 10 9zM310 600h181c6 0 9 -3 9 -9v-91h-200v91c0 6 4 9 10 9zM0 400h800v-100h-800v100zM0 200h200v-191c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v191zM300 200 +h200v-91c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v91zM600 200h200v-191c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v191z" /> + <glyph glyph-name="d3" unicode="" +d="M0 700h800v-100h-800v100zM9 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM609 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182 +c-6 0 -9 3 -9 9v482c0 6 3 9 9 9z" /> + <glyph glyph-name="d4" unicode="" +d="M50 600h500c28 0 50 -22 50 -50v-150l100 100h100v-300h-100l-100 100v-150c0 -28 -22 -50 -50 -50h-500c-28 0 -50 22 -50 50v400c0 28 22 50 50 50z" /> + <glyph glyph-name="d5" unicode="" +d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 600v100c26 0 52 -4 75 -10c130 -33 225 -150 225 -290s-95 -258 -225 -291h-3c-23 -6 -47 -9 -72 -9v100c17 0 34 2 50 6c86 22 150 100 150 194s-64 172 -150 194c-16 4 -33 6 -50 6zM500 500l25 -3 +c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" /> + <glyph glyph-name="d6" unicode="" horiz-adv-x="600" +d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 500l25 -3c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" /> + <glyph glyph-name="d7" unicode="" horiz-adv-x="400" +d="M334 800h66v-800h-66l-134 200h-200v400h200z" /> + <glyph glyph-name="d8" unicode="" +d="M309 800h82c6 0 10 -4 12 -9l294 -682l3 -19v-81c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v81l3 19l294 682c2 5 6 9 12 9zM300 500v-200h100v200h-100zM300 200v-100h100v100h-100z" /> + <glyph glyph-name="d9" unicode="" +d="M375 800c138 0 269 -39 378 -109l-53 -82c-93 60 -205 91 -325 91c-119 0 -229 -32 -322 -91l-53 82c109 70 237 109 375 109zM375 500c78 0 154 -23 216 -62l-53 -85c-46 30 -104 47 -163 47c-60 0 -112 -17 -159 -47l-54 85c62 40 134 62 213 62zM375 200 +c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="da" unicode="" horiz-adv-x="900" +d="M551 800c16 0 32 0 47 -3l-97 -97v-200h200l97 97c3 -15 3 -31 3 -47c0 -138 -112 -250 -250 -250c-32 0 -62 8 -90 19l-288 -291c-20 -20 -46 -28 -72 -28s-52 8 -72 28c-39 39 -39 105 0 144l291 287c-11 28 -19 59 -19 91c0 138 112 250 250 250zM101 150 +c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="db" unicode="" +d="M141 700c84 -84 169 -167 253 -250c82 83 167 165 247 250l143 -141l-253 -253c84 -82 167 -166 253 -247l-143 -143c-81 86 -165 169 -247 253l-253 -253l-141 143c85 80 167 164 250 247c-83 84 -166 169 -250 253z" /> + <glyph glyph-name="dc" unicode="" +d="M0 800h100l231 -300h38l231 300h100l-225 -300h225v-100h-300v-100h300v-100h-300v-200h-100v200h-300v100h300v100h-300v100h225z" /> + <glyph glyph-name="dd" unicode="" horiz-adv-x="900" +d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700 +c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM300 600h100v-100h100v-100h-100v-100h-100v100h-100v100h100v100z" /> + <glyph glyph-name="de" unicode="" horiz-adv-x="900" +d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700 +c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM200 500h300v-100h-300v100z" /> + </font> +</defs></svg> diff --git a/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf new file mode 100644 index 0000000..fab6048 Binary files /dev/null and b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf differ diff --git a/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.woff b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.woff new file mode 100644 index 0000000..f930998 Binary files /dev/null and b/WebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.woff differ diff --git a/WebUI/wwwroot/data/Avatars.json b/WebUI/wwwroot/data/Avatars.json new file mode 100644 index 0000000..1907505 --- /dev/null +++ b/WebUI/wwwroot/data/Avatars.json @@ -0,0 +1,1426 @@ +[ + { + "AvatarId": 0, + "AvatarName": "CRAB" + }, + { + "AvatarId": 1, + "AvatarName": "BIRD" + }, + { + "AvatarId": 2, + "AvatarName": "DOLPHIN" + }, + { + "AvatarId": 3, + "AvatarName": "BUTTERFLY" + }, + { + "AvatarId": 4, + "AvatarName": "ENERGY" + }, + { + "AvatarId": 5, + "AvatarName": "GOLDFISH" + }, + { + "AvatarId": 6, + "AvatarName": "LIGHT" + }, + { + "AvatarId": 7, + "AvatarName": "OCTOPUS" + }, + { + "AvatarId": 8, + "AvatarName": "HUMAN" + }, + { + "AvatarId": 9, + "AvatarName": "RAPID" + }, + { + "AvatarId": 10, + "AvatarName": "SQUID" + }, + { + "AvatarId": 11, + "AvatarName": "SPARK" + }, + { + "AvatarId": 12, + "AvatarName": "GENE" + }, + { + "AvatarId": 13, + "AvatarName": "UFO" + }, + { + "AvatarId": 14, + "AvatarName": "PHOENIX" + }, + { + "AvatarId": 15, + "AvatarName": "ENE" + }, + { + "AvatarId": 16, + "AvatarName": "niconicoTVchan" + }, + { + "AvatarId": 17, + "AvatarName": "ENE(3D)" + }, + { + "AvatarId": 18, + "AvatarName": "SILVER HAWK" + }, + { + "AvatarId": 19, + "AvatarName": "GC CRAB" + }, + { + "AvatarId": 20, + "AvatarName": "R-GRAY0" + }, + { + "AvatarId": 21, + "AvatarName": "HORSE" + }, + { + "AvatarId": 22, + "AvatarName": "FB777" + }, + { + "AvatarId": 23, + "AvatarName": "KIKKUN" + }, + { + "AvatarId": 24, + "AvatarName": "aromahot" + }, + { + "AvatarId": 25, + "AvatarName": "eoheoh" + }, + { + "AvatarId": 26, + "AvatarName": "PEGASUS" + }, + { + "AvatarId": 27, + "AvatarName": "MARISA" + }, + { + "AvatarId": 28, + "AvatarName": "EREN" + }, + { + "AvatarId": 29, + "AvatarName": "TAOKAKA" + }, + { + "AvatarId": 30, + "AvatarName": "NU-13" + }, + { + "AvatarId": 31, + "AvatarName": "R-GRAY1" + }, + { + "AvatarId": 32, + "AvatarName": "RAIN" + }, + { + "AvatarId": 33, + "AvatarName": "KUMI" + }, + { + "AvatarId": 34, + "AvatarName": "KING METAL DRAGON" + }, + { + "AvatarId": 35, + "AvatarName": "TAMADRA" + }, + { + "AvatarId": 36, + "AvatarName": "hito2" + }, + { + "AvatarId": 37, + "AvatarName": "HELICOPTER" + }, + { + "AvatarId": 38, + "AvatarName": "hito3" + }, + { + "AvatarId": 39, + "AvatarName": "REIMU" + }, + { + "AvatarId": 40, + "AvatarName": "UFO-CO" + }, + { + "AvatarId": 41, + "AvatarName": "DRAGON" + }, + { + "AvatarId": 42, + "AvatarName": "KNITTY" + }, + { + "AvatarId": 43, + "AvatarName": "NINJA SLAYER" + }, + { + "AvatarId": 44, + "AvatarName": "SILVER HAWK(L)" + }, + { + "AvatarId": 45, + "AvatarName": "SILVER HAWK(N)" + }, + { + "AvatarId": 46, + "AvatarName": "SILVER HAWK(F)" + }, + { + "AvatarId": 47, + "AvatarName": "SILVER HAWK(A)" + }, + { + "AvatarId": 48, + "AvatarName": "R-GRAY2" + }, + { + "AvatarId": 49, + "AvatarName": "MIRIA" + }, + { + "AvatarId": 50, + "AvatarName": "PAPER CRANE" + }, + { + "AvatarId": 51, + "AvatarName": "SHEEP" + }, + { + "AvatarId": 52, + "AvatarName": "CIRNO" + }, + { + "AvatarId": 53, + "AvatarName": "SAKUYA" + }, + { + "AvatarId": 54, + "AvatarName": "FB777(RPG)" + }, + { + "AvatarId": 55, + "AvatarName": "KIKKUN(RPG)" + }, + { + "AvatarId": 56, + "AvatarName": "aromahot(RPG)" + }, + { + "AvatarId": 57, + "AvatarName": "eoheoh(RPG)" + }, + { + "AvatarId": 58, + "AvatarName": "GC OCTOPUS" + }, + { + "AvatarId": 59, + "AvatarName": "IA(2D)" + }, + { + "AvatarId": 60, + "AvatarName": "SAYO" + }, + { + "AvatarId": 61, + "AvatarName": "BUBBLEN" + }, + { + "AvatarId": 62, + "AvatarName": "HITO" + }, + { + "AvatarId": 63, + "AvatarName": "SPICA" + }, + { + "AvatarId": 64, + "AvatarName": "BOBBLEN" + }, + { + "AvatarId": 65, + "AvatarName": "SPACE INVADERS" + }, + { + "AvatarId": 66, + "AvatarName": "CANNON" + }, + { + "AvatarId": 67, + "AvatarName": "GC SQUID" + }, + { + "AvatarId": 68, + "AvatarName": "Fess up" + }, + { + "AvatarId": 69, + "AvatarName": "IA(3D)" + }, + { + "AvatarId": 70, + "AvatarName": "Iron Fossil" + }, + { + "AvatarId": 71, + "AvatarName": "SKULL" + }, + { + "AvatarId": 72, + "AvatarName": "INTER GRAY" + }, + { + "AvatarId": 73, + "AvatarName": "OUROBOROS" + }, + { + "AvatarId": 74, + "AvatarName": "RACHEL" + }, + { + "AvatarId": 75, + "AvatarName": "HATSUNE MIKU(3D)" + }, + { + "AvatarId": 76, + "AvatarName": "HATSUNE MIKU(2D)" + }, + { + "AvatarId": 77, + "AvatarName": "COSIO" + }, + { + "AvatarId": 78, + "AvatarName": "SHOHEI" + }, + { + "AvatarId": 79, + "AvatarName": "FIGHTING THUNDER" + }, + { + "AvatarId": 80, + "AvatarName": "NICO" + }, + { + "AvatarId": 81, + "AvatarName": "Ti2" + }, + { + "AvatarId": 82, + "AvatarName": "Ti2Overclock" + }, + { + "AvatarId": 83, + "AvatarName": "BLACK FLY" + }, + { + "AvatarId": 84, + "AvatarName": "BABI" + }, + { + "AvatarId": 85, + "AvatarName": "SANAE" + }, + { + "AvatarId": 86, + "AvatarName": "YOUMU" + }, + { + "AvatarId": 87, + "AvatarName": "KAGAMINE RIN" + }, + { + "AvatarId": 88, + "AvatarName": "KAGAMINE LEN" + }, + { + "AvatarId": 89, + "AvatarName": "OTOMON" + }, + { + "AvatarId": 90, + "AvatarName": "GUARDIAN" + }, + { + "AvatarId": 91, + "AvatarName": "March \u0026 Arch" + }, + { + "AvatarId": 92, + "AvatarName": "CANDICE BONBON" + }, + { + "AvatarId": 93, + "AvatarName": "RONMEI" + }, + { + "AvatarId": 94, + "AvatarName": "FULLMETAL ZUNDOKO" + }, + { + "AvatarId": 95, + "AvatarName": "OMAKE" + }, + { + "AvatarId": 96, + "AvatarName": "SYAMEIMARU" + }, + { + "AvatarId": 97, + "AvatarName": "SEA TURTLE" + }, + { + "AvatarId": 98, + "AvatarName": "FRANDRE SCARLET" + }, + { + "AvatarId": 99, + "AvatarName": "MOSYNE(HUMANOID)" + }, + { + "AvatarId": 100, + "AvatarName": "Carte" + }, + { + "AvatarId": 101, + "AvatarName": "MONKEY" + }, + { + "AvatarId": 102, + "AvatarName": "MIRIN" + }, + { + "AvatarId": 103, + "AvatarName": "MOSYNE(FLIGHT)" + }, + { + "AvatarId": 104, + "AvatarName": "EDM BOW" + }, + { + "AvatarId": 105, + "AvatarName": "RANKO" + }, + { + "AvatarId": 106, + "AvatarName": "t\u002Bpazolite" + }, + { + "AvatarId": 107, + "AvatarName": "Massive-New-Krew" + }, + { + "AvatarId": 108, + "AvatarName": "RISA" + }, + { + "AvatarId": 109, + "AvatarName": "NEMU" + }, + { + "AvatarId": 110, + "AvatarName": "EIMI" + }, + { + "AvatarId": 111, + "AvatarName": "MOGA" + }, + { + "AvatarId": 112, + "AvatarName": "AYANE" + }, + { + "AvatarId": 113, + "AvatarName": "LINKA" + }, + { + "AvatarId": 114, + "AvatarName": "KAIDAN" + }, + { + "AvatarId": 115, + "AvatarName": "CADENCE" + }, + { + "AvatarId": 116, + "AvatarName": "SKELETON" + }, + { + "AvatarId": 117, + "AvatarName": "SHOPKEEPER" + }, + { + "AvatarId": 118, + "AvatarName": "MONOKUMA" + }, + { + "AvatarId": 119, + "AvatarName": "MAKOTO NAEGI" + }, + { + "AvatarId": 120, + "AvatarName": "JUNKO ENOSHIMA" + }, + { + "AvatarId": 121, + "AvatarName": "SILVER HAWK(M)" + }, + { + "AvatarId": 122, + "AvatarName": "GUMI(3D)" + }, + { + "AvatarId": 123, + "AvatarName": "GUMI(2D)" + }, + { + "AvatarId": 124, + "AvatarName": "Deltasword" + }, + { + "AvatarId": 125, + "AvatarName": "STRANIA" + }, + { + "AvatarId": 126, + "AvatarName": "GUMI(Guitar)" + }, + { + "AvatarId": 127, + "AvatarName": "REIMU(2D)" + }, + { + "AvatarId": 128, + "AvatarName": "MARISA(2D)" + }, + { + "AvatarId": 129, + "AvatarName": "SANAE(2D)" + }, + { + "AvatarId": 130, + "AvatarName": "UFO(3D)" + }, + { + "AvatarId": 131, + "AvatarName": "ONE(2D)" + }, + { + "AvatarId": 132, + "AvatarName": "ONE(3D)" + }, + { + "AvatarId": 133, + "AvatarName": "AKATSUKI(3D)" + }, + { + "AvatarId": 134, + "AvatarName": "SUN(3D)" + }, + { + "AvatarId": 135, + "AvatarName": "MASAKI" + }, + { + "AvatarId": 136, + "AvatarName": "HATSUNE MIKU(2Ddot)" + }, + { + "AvatarId": 137, + "AvatarName": "MEGURINE LUKA(2D)" + }, + { + "AvatarId": 138, + "AvatarName": "MEGURINE LUKA(3D)" + }, + { + "AvatarId": 139, + "AvatarName": "TAKUYA \u0026 YUKI" + }, + { + "AvatarId": 140, + "AvatarName": "ALICE(2D)" + }, + { + "AvatarId": 141, + "AvatarName": "NITORI(2D)" + }, + { + "AvatarId": 142, + "AvatarName": "KEN" + }, + { + "AvatarId": 143, + "AvatarName": "KEINE(2D)" + }, + { + "AvatarId": 144, + "AvatarName": "YUGI" + }, + { + "AvatarId": 145, + "AvatarName": "CHIBI LINKA" + }, + { + "AvatarId": 146, + "AvatarName": "CHIBI RONMEI" + }, + { + "AvatarId": 147, + "AvatarName": "CHIBI KEN" + }, + { + "AvatarId": 148, + "AvatarName": "CHIBI ZUNDOKO" + }, + { + "AvatarId": 149, + "AvatarName": "CHIBI DONTSUKU" + }, + { + "AvatarId": 150, + "AvatarName": "SIDUNE(2D)" + }, + { + "AvatarId": 151, + "AvatarName": "DOGUMA \u0026 MAGUMA(2D)" + }, + { + "AvatarId": 152, + "AvatarName": "REMY(2D)" + }, + { + "AvatarId": 153, + "AvatarName": "KYOKA(2D)" + }, + { + "AvatarId": 154, + "AvatarName": "SIDUNE" + }, + { + "AvatarId": 155, + "AvatarName": "CHICK" + }, + { + "AvatarId": 156, + "AvatarName": "KAGAMINE RIN(2D)" + }, + { + "AvatarId": 157, + "AvatarName": "KAGAMINE LEN(2D)" + }, + { + "AvatarId": 158, + "AvatarName": "YUME" + }, + { + "AvatarId": 159, + "AvatarName": "POLYVINYL DONTSUKU" + }, + { + "AvatarId": 160, + "AvatarName": "YOUMU(2D)" + }, + { + "AvatarId": 161, + "AvatarName": "MIKO(2D)" + }, + { + "AvatarId": 162, + "AvatarName": "VOCALOID NEMU" + }, + { + "AvatarId": 163, + "AvatarName": "tanuQn" + }, + { + "AvatarId": 164, + "AvatarName": "REMILIA SCARLET" + }, + { + "AvatarId": 165, + "AvatarName": "YUYUKO(2D)" + }, + { + "AvatarId": 166, + "AvatarName": "KANAKO(2D)" + }, + { + "AvatarId": 167, + "AvatarName": "RANKO(2D)" + }, + { + "AvatarId": 168, + "AvatarName": "COMP(2D)" + }, + { + "AvatarId": 169, + "AvatarName": "PAPRIKA(2D)" + }, + { + "AvatarId": 170, + "AvatarName": "RANKO no ANE(2D)" + }, + { + "AvatarId": 171, + "AvatarName": "CHIBI MIKU" + }, + { + "AvatarId": 172, + "AvatarName": "CHIBI LUKA" + }, + { + "AvatarId": 173, + "AvatarName": "CHIBI RIN" + }, + { + "AvatarId": 174, + "AvatarName": "CHIBI LEN" + }, + { + "AvatarId": 175, + "AvatarName": "CHIBI MEIKO" + }, + { + "AvatarId": 176, + "AvatarName": "CHIBI KAITO" + }, + { + "AvatarId": 177, + "AvatarName": "HATSUNE MIKU(3Drun)" + }, + { + "AvatarId": 178, + "AvatarName": "Tone Sphere Cricro" + }, + { + "AvatarId": 179, + "AvatarName": "Tone Sphere Tessera" + }, + { + "AvatarId": 180, + "AvatarName": "BIPLANE" + }, + { + "AvatarId": 181, + "AvatarName": "REDALiCE" + }, + { + "AvatarId": 182, + "AvatarName": "DJ Genki" + }, + { + "AvatarId": 183, + "AvatarName": "USAO" + }, + { + "AvatarId": 184, + "AvatarName": "DJ Myosuke" + }, + { + "AvatarId": 185, + "AvatarName": "aran" + }, + { + "AvatarId": 186, + "AvatarName": "VKL5.03(P)" + }, + { + "AvatarId": 187, + "AvatarName": "2Foot" + }, + { + "AvatarId": 188, + "AvatarName": "WINDIA" + }, + { + "AvatarId": 189, + "AvatarName": "CASPER" + }, + { + "AvatarId": 190, + "AvatarName": "RIGA" + }, + { + "AvatarId": 191, + "AvatarName": "CIRNO(2D)" + }, + { + "AvatarId": 192, + "AvatarName": "CIRNO(2D,TAN)" + }, + { + "AvatarId": 193, + "AvatarName": "CIRNO(CHIRUPA)" + }, + { + "AvatarId": 194, + "AvatarName": "SHINMYOUMARU" + }, + { + "AvatarId": 195, + "AvatarName": "RAIKO(2D)" + }, + { + "AvatarId": 196, + "AvatarName": "SAKUYA(2D)" + }, + { + "AvatarId": 197, + "AvatarName": "YUME(summer)" + }, + { + "AvatarId": 198, + "AvatarName": "ATTACK THE MUSIC" + }, + { + "AvatarId": 199, + "AvatarName": "WR-02R" + }, + { + "AvatarId": 200, + "AvatarName": "Reindeer" + }, + { + "AvatarId": 201, + "AvatarName": "DOG" + }, + { + "AvatarId": 202, + "AvatarName": "LINKA(Christmas)" + }, + { + "AvatarId": 203, + "AvatarName": "YUME(Christmas)" + }, + { + "AvatarId": 204, + "AvatarName": "IA(ninja)" + }, + { + "AvatarId": 205, + "AvatarName": "ONE(ninja)" + }, + { + "AvatarId": 206, + "AvatarName": "SUTADONTAN" + }, + { + "AvatarId": 207, + "AvatarName": "Xenoa" + }, + { + "AvatarId": 208, + "AvatarName": "GUMI(goggles)" + }, + { + "AvatarId": 209, + "AvatarName": "GUMI(school)" + }, + { + "AvatarId": 210, + "AvatarName": "DOG(2D)" + }, + { + "AvatarId": 211, + "AvatarName": "LINKA(MIKO)" + }, + { + "AvatarId": 212, + "AvatarName": "HINA" + }, + { + "AvatarId": 213, + "AvatarName": "SEINE" + }, + { + "AvatarId": 214, + "AvatarName": "MIRIN(S)" + }, + { + "AvatarId": 215, + "AvatarName": "RISA(S)" + }, + { + "AvatarId": 216, + "AvatarName": "NEMU(S)" + }, + { + "AvatarId": 217, + "AvatarName": "EIMI(S)" + }, + { + "AvatarId": 218, + "AvatarName": "AYANE(S)" + }, + { + "AvatarId": 219, + "AvatarName": "RIN(S)" + }, + { + "AvatarId": 220, + "AvatarName": "NAGI(S)" + }, + { + "AvatarId": 221, + "AvatarName": "HATSUNE MIKU(10th)" + }, + { + "AvatarId": 222, + "AvatarName": "CHEN(2D)" + }, + { + "AvatarId": 223, + "AvatarName": "KOGASA(2D)" + }, + { + "AvatarId": 224, + "AvatarName": "RITMO" + }, + { + "AvatarId": 225, + "AvatarName": "FISICA" + }, + { + "AvatarId": 226, + "AvatarName": "LINKA(SCHOOL)" + }, + { + "AvatarId": 227, + "AvatarName": "YUME(SCHOOL)" + }, + { + "AvatarId": 228, + "AvatarName": "SEINE(SCHOOL)" + }, + { + "AvatarId": 229, + "AvatarName": "FRANDRE(2D)" + }, + { + "AvatarId": 230, + "AvatarName": "UDONGEIN(2D)" + }, + { + "AvatarId": 231, + "AvatarName": "GEAR" + }, + { + "AvatarId": 232, + "AvatarName": "SCISSORS" + }, + { + "AvatarId": 233, + "AvatarName": "B.B.K.K.B.K.K. 1" + }, + { + "AvatarId": 234, + "AvatarName": "B.B.K.K.B.K.K. 2" + }, + { + "AvatarId": 235, + "AvatarName": "FB777(Phoenix)" + }, + { + "AvatarId": 236, + "AvatarName": "KIKKUN(Phoenix)" + }, + { + "AvatarId": 237, + "AvatarName": "aromahot(Phoenix)" + }, + { + "AvatarId": 238, + "AvatarName": "eoheoh(Phoenix)" + }, + { + "AvatarId": 239, + "AvatarName": "AKANE (2Ddot)" + }, + { + "AvatarId": 240, + "AvatarName": "AOI(2Ddot)" + }, + { + "AvatarId": 241, + "AvatarName": "AKANE(Seyana.)" + }, + { + "AvatarId": 242, + "AvatarName": "YUKARI(Seyana.)" + }, + { + "AvatarId": 243, + "AvatarName": "HATSUNE MIKU(2018)" + }, + { + "AvatarId": 244, + "AvatarName": "JUNKO(2D)" + }, + { + "AvatarId": 245, + "AvatarName": "MIKOKO(2D)" + }, + { + "AvatarId": 246, + "AvatarName": "13" + }, + { + "AvatarId": 247, + "AvatarName": "Rilyca" + }, + { + "AvatarId": 248, + "AvatarName": "Gustav Heydrich" + }, + { + "AvatarId": 249, + "AvatarName": "Voidoll" + }, + { + "AvatarId": 250, + "AvatarName": "MIKOKO(3D)" + }, + { + "AvatarId": 251, + "AvatarName": "UDONGEIN" + }, + { + "AvatarId": 252, + "AvatarName": "Kemomimi Oukoku Flag" + }, + { + "AvatarId": 253, + "AvatarName": "Human UNDERTALE" + }, + { + "AvatarId": 254, + "AvatarName": "Flowey UNDERTALE" + }, + { + "AvatarId": 255, + "AvatarName": "SOUL UNDERTALE" + }, + { + "AvatarId": 256, + "AvatarName": "OTOMACHI UNA SPICY" + }, + { + "AvatarId": 257, + "AvatarName": "OTOMACHI UNA SUGAR" + }, + { + "AvatarId": 258, + "AvatarName": "OTOMACHI UNA" + }, + { + "AvatarId": 259, + "AvatarName": "KEFIR" + }, + { + "AvatarId": 260, + "AvatarName": "BOAR" + }, + { + "AvatarId": 261, + "AvatarName": "SEINE(Christmas)" + }, + { + "AvatarId": 262, + "AvatarName": "SUWAKO(2D)" + }, + { + "AvatarId": 263, + "AvatarName": "HIKARI" + }, + { + "AvatarId": 264, + "AvatarName": "TAIRITSU" + }, + { + "AvatarId": 265, + "AvatarName": "LINKA\u0026BOAR" + }, + { + "AvatarId": 266, + "AvatarName": "IA(Cheerleader)" + }, + { + "AvatarId": 267, + "AvatarName": "ONE(Cheerleader)" + }, + { + "AvatarId": 268, + "AvatarName": "Rarari Really" + }, + { + "AvatarId": 269, + "AvatarName": "Lalari Fairy" + }, + { + "AvatarId": 270, + "AvatarName": "El Clear" + }, + { + "AvatarId": 271, + "AvatarName": "El Fail" + }, + { + "AvatarId": 272, + "AvatarName": "YUKARI(2Ddot)" + }, + { + "AvatarId": 273, + "AvatarName": "Great Thing" + }, + { + "AvatarId": 274, + "AvatarName": "ANDROMEDAKO" + }, + { + "AvatarId": 275, + "AvatarName": "DJ NOBUNAGA" + }, + { + "AvatarId": 276, + "AvatarName": "SARASSY" + }, + { + "AvatarId": 277, + "AvatarName": "LINKA(Cranky)" + }, + { + "AvatarId": 278, + "AvatarName": "YUME(Cranky)" + }, + { + "AvatarId": 279, + "AvatarName": "SEINE(Cranky)" + }, + { + "AvatarId": 280, + "AvatarName": "ANNOYING DOG" + }, + { + "AvatarId": 281, + "AvatarName": "NAPSTA BLOOK" + }, + { + "AvatarId": 282, + "AvatarName": "TEMMIE" + }, + { + "AvatarId": 283, + "AvatarName": "REIMU(headphone)" + }, + { + "AvatarId": 284, + "AvatarName": "SYAMEIMARU(2D)" + }, + { + "AvatarId": 285, + "AvatarName": "SIYO" + }, + { + "AvatarId": 286, + "AvatarName": "NERO" + }, + { + "AvatarId": 287, + "AvatarName": "OKINA(2D)" + }, + { + "AvatarId": 288, + "AvatarName": "SATONO\u0026MAI(2D)" + }, + { + "AvatarId": 289, + "AvatarName": "ROSSA" + }, + { + "AvatarId": 290, + "AvatarName": "ITO" + }, + { + "AvatarId": 291, + "AvatarName": "SUI" + }, + { + "AvatarId": 292, + "AvatarName": "YUKARI.Y (2D)" + }, + { + "AvatarId": 293, + "AvatarName": "swallowtail" + }, + { + "AvatarId": 294, + "AvatarName": "HIME TANAKA" + }, + { + "AvatarId": 295, + "AvatarName": "HINA SUZUKI" + }, + { + "AvatarId": 296, + "AvatarName": "MIRAI AKARI" + }, + { + "AvatarId": 297, + "AvatarName": "ELIZABETH" + }, + { + "AvatarId": 298, + "AvatarName": "AKARI KIZUNA" + }, + { + "AvatarId": 299, + "AvatarName": "flower" + }, + { + "AvatarId": 300, + "AvatarName": "LINKA\u0026MOUSE" + }, + { + "AvatarId": 301, + "AvatarName": "LINKA (MIKO)" + }, + { + "AvatarId": 302, + "AvatarName": "YUME (MIKO)" + }, + { + "AvatarId": 303, + "AvatarName": "SEINE (MIKO)" + }, + { + "AvatarId": 304, + "AvatarName": "NoA" + }, + { + "AvatarId": 305, + "AvatarName": "Io" + }, + { + "AvatarId": 306, + "AvatarName": "Mana" + }, + { + "AvatarId": 307, + "AvatarName": "MEILING(2D)" + }, + { + "AvatarId": 308, + "AvatarName": "PATCHOULI(2D)" + }, + { + "AvatarId": 309, + "AvatarName": "REMILIA(2D)" + }, + { + "AvatarId": 310, + "AvatarName": "SAKI(2D)" + }, + { + "AvatarId": 311, + "AvatarName": "KEIKI(2D)" + }, + { + "AvatarId": 312, + "AvatarName": "MAYUMI(2D)" + }, + { + "AvatarId": 313, + "AvatarName": "LUNA" + }, + { + "AvatarId": 314, + "AvatarName": "BURO" + }, + { + "AvatarId": 315, + "AvatarName": "RIN" + }, + { + "AvatarId": 316, + "AvatarName": "MARIJA" + }, + { + "AvatarId": 317, + "AvatarName": "YMIR" + }, + { + "AvatarId": 318, + "AvatarName": "SIRO" + }, + { + "AvatarId": 319, + "AvatarName": "MITO" + }, + { + "AvatarId": 320, + "AvatarName": "LILY" + }, + { + "AvatarId": 321, + "AvatarName": "TERUYAMA" + }, + { + "AvatarId": 322, + "AvatarName": "HANERU HIDA" + }, + { + "AvatarId": 323, + "AvatarName": "CHUNI PENGUIN" + }, + { + "AvatarId": 324, + "AvatarName": "RICHTSHUTZE" + }, + { + "AvatarId": 325, + "AvatarName": "MAGELLAN MAGELLAN" + }, + { + "AvatarId": 326, + "AvatarName": "MIKO SAKURA" + }, + { + "AvatarId": 327, + "AvatarName": "FUBUKI SHIRAKAMI" + }, + { + "AvatarId": 328, + "AvatarName": "MATSURI NATSUIRO" + }, + { + "AvatarId": 329, + "AvatarName": "MARINE HOUSHOU" + }, + { + "AvatarId": 330, + "AvatarName": "SATORI(2D)" + }, + { + "AvatarId": 331, + "AvatarName": "KOISHI(2D)" + }, + { + "AvatarId": 332, + "AvatarName": "ORIN(2D)" + }, + { + "AvatarId": 333, + "AvatarName": "UTSUHO(2D)" + }, + { + "AvatarId": 334, + "AvatarName": "P4ALL(2D)" + }, + { + "AvatarId": 335, + "AvatarName": "LINKA(Fairy)" + }, + { + "AvatarId": 336, + "AvatarName": "YUME(Fairy)" + }, + { + "AvatarId": 337, + "AvatarName": "SEINE(Fairy)" + }, + { + "AvatarId": 338, + "AvatarName": "HIME(Ver.2)" + }, + { + "AvatarId": 339, + "AvatarName": "HINA(Ver.2)" + }, + { + "AvatarId": 340, + "AvatarName": "RINKU AIMOTO" + }, + { + "AvatarId": 341, + "AvatarName": "KYOKO YAMATE" + }, + { + "AvatarId": 342, + "AvatarName": "SHONI PENGUIN" + }, + { + "AvatarId": 343, + "AvatarName": "SURVIVAL ZUNDOKO" + }, + { + "AvatarId": 344, + "AvatarName": "HINATA(2D)" + }, + { + "AvatarId": 345, + "AvatarName": "HINATA(VirtuaREAL)" + }, + { + "AvatarId": 346, + "AvatarName": "PIKAMEE(VirtuaREAL)" + }, + { + "AvatarId": 347, + "AvatarName": "TOMOSHIKA(VirtuaREAL)" + }, + { + "AvatarId": 348, + "AvatarName": "AKARI HOSHIZAKI" + }, + { + "AvatarId": 349, + "AvatarName": "YUZU FUJISAWA" + }, + { + "AvatarId": 350, + "AvatarName": "AOI MISUMI" + }, + { + "AvatarId": 351, + "AvatarName": "SETSUNA SUMERAGI" + }, + { + "AvatarId": 352, + "AvatarName": "NAVINYAN" + }, + { + "AvatarId": 353, + "AvatarName": "KAGURANANA(2D)" + }, + { + "AvatarId": 354, + "AvatarName": "KAGURANANA(VirtuaREAL)" + }, + { + "AvatarId": 355, + "AvatarName": "KYO(VirtuaREAL)" + } +] \ No newline at end of file diff --git a/WebUI/wwwroot/data/Navigators.json b/WebUI/wwwroot/data/Navigators.json new file mode 100644 index 0000000..847e967 --- /dev/null +++ b/WebUI/wwwroot/data/Navigators.json @@ -0,0 +1,946 @@ +[ + { + "Id": 0, + "NavigatorName": "YUME", + "Genre": 1, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをユメに変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME\nCV: Nanami Takahashi" + }, + { + "Id": 1, + "NavigatorName": "LINKA", + "Genre": 1, + "IllustrationCredit": "illustration by ヤスダスズヒト", + "ToolTipJp": "ナビゲーターをリンカに変更します\nボイスを変更します(CV:豊田萌絵)", + "ToolTipEn": "Change the navigator to LINKA\nCV: Jenny Shima" + }, + { + "Id": 2, + "NavigatorName": "ZUNDOKO", + "Genre": 2, + "IllustrationCredit": "illustration by 雉本ユーヒ", + "ToolTipJp": "ナビゲーターをフルメタル ずんど子ちゃんに\n変更します\nボイスを変更します(CV:ちよこ)", + "ToolTipEn": "Change the navigator to ZUNDOKO\nCV: Chiyoko" + }, + { + "Id": 3, + "NavigatorName": "DONTSUKU", + "Genre": 2, + "IllustrationCredit": "illustration by 雉本ユーヒ", + "ToolTipJp": "ナビゲーターをポリビニル どんつくくんに\n変更します\nボイスを変更します(CV:さきぴょ)", + "ToolTipEn": "Change the navigator to DONTSUKU\nCV: Sakipyo" + }, + { + "Id": 4, + "NavigatorName": "RONMEI", + "Genre": 2, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをカンフーガール・ロンメイに\n変更します", + "ToolTipEn": "Change the navigator to RONMEI" + }, + { + "Id": 5, + "NavigatorName": "KEN", + "Genre": 2, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをカンフーマスター・拳に\n変更します", + "ToolTipEn": "Change the navigator to KEN" + }, + { + "Id": 6, + "NavigatorName": "TOMOKA", + "Genre": 3, + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より", + "ToolTipJp": "ナビゲーターをトモカに変更します\nボイスを変更します(CV:水瀬いのり)", + "ToolTipEn": "Change the navigator to TOMOKA\nCV: Inori Minase" + }, + { + "Id": 7, + "NavigatorName": "REIMU", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを博麗霊夢に変更します", + "ToolTipEn": "Change the navigator to REIMU" + }, + { + "Id": 8, + "NavigatorName": "MARISA", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを霧雨魔理沙に変更します", + "ToolTipEn": "Change the navigator to MARISA" + }, + { + "Id": 9, + "NavigatorName": "MIKU(WINTER)", + "Genre": 5, + "IllustrationCredit": "illustration by へちま\n「初音ミク四季シリーズ」より", + "ToolTipJp": "ナビゲーターを初音ミク(冬Ver.)に変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to MIKU(WINTER)\nCV: Saki Fujita" + }, + { + "Id": 10, + "NavigatorName": "NEMU(VOCALOID)", + "Genre": 5, + "IllustrationCredit": "illustration by 堀口悠紀子", + "ToolTipJp": "ナビゲーターを夢眠ネム(VOCALOID)\nに変更します\nボイスを変更します(CV:夢眠ネム)", + "ToolTipEn": "Change the navigator to NEMU(VOCALOID)\nCV: NEMU(VOCALOID)" + }, + { + "Id": 11, + "NavigatorName": "NADIA", + "Genre": 3, + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「アルカノイドvsインベーダー」より", + "ToolTipJp": "ナビゲーターをナティア・\nヴィヴィーに変更します\nボイスを変更します(CV:嶋澤奈津子)", + "ToolTipEn": "Change the navigator to NADIA VIVIE\nCV: Natsuko Shimazawa" + }, + { + "Id": 12, + "NavigatorName": "MIKU(SUMMER)", + "Genre": 5, + "IllustrationCredit": "illustration by さいとうなおき\n「初音ミク四季シリーズ」より", + "ToolTipJp": "ナビゲーターを初音ミク(夏Ver.)に変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to MIKU(SUMMER)\nCV: Saki Fujita" + }, + { + "Id": 13, + "NavigatorName": "DORO*C", + "Genre": 6, + "IllustrationCredit": "illustration by KEI\n「HARDCORE TANO*C」より", + "ToolTipJp": "ナビゲーターをDORO*Cに\n変更します", + "ToolTipEn": "Change the navigator to DORO*C" + }, + { + "Id": 14, + "NavigatorName": "YOUMU", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを魂魄妖夢に変更します", + "ToolTipEn": "Change the navigator to YOUMU" + }, + { + "Id": 15, + "NavigatorName": "SAKUYA", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを十六夜咲夜に変更します", + "ToolTipEn": "Change the navigator to SAKUYA" + }, + { + "Id": 16, + "NavigatorName": "MIYABI", + "Genre": 6, + "IllustrationCredit": "illustration by Nidy-2D-\n「フィギュアヘッズ エース」より", + "ToolTipJp": "ナビゲーターを雅に変更します\nボイスを変更します(CV:高野麻里佳)", + "ToolTipEn": "Change the navigator to MIYABI\nCV: Marika Kouno" + }, + { + "Id": 17, + "NavigatorName": "KAGURA", + "Genre": 6, + "IllustrationCredit": "illustration by Nidy-2D-\n「フィギュアヘッズ エース」より", + "ToolTipJp": "ナビゲーターを神楽に変更します\nボイスを変更します(CV:本渡楓)", + "ToolTipEn": "Change the navigator to KAGURA\nCV: Kaede Hondo" + }, + { + "Id": 18, + "NavigatorName": "CASPER", + "Genre": 6, + "IllustrationCredit": "illustration by 井上淳哉\n「デススマイルズ」より", + "ToolTipJp": "ナビゲーターをキャスパーに変更します", + "ToolTipEn": "Change the navigator to CASPER" + }, + { + "Id": 19, + "NavigatorName": "ADELE\u3000FRIEDRICH", + "Genre": 6, + "IllustrationCredit": "illustration by 山本七式\n「アンダーディフィート」より", + "ToolTipJp": "ナビゲーターをアデーレ・フリードリッヒ\nに変更します", + "ToolTipEn": "Change the navigator to ADELE FRIEDRICH" + }, + { + "Id": 20, + "NavigatorName": "ESHIRIA\u3000PORTMAN", + "Genre": 6, + "IllustrationCredit": "illustration by ことぶきつかさ\n「雷電Ⅴ」より", + "ToolTipJp": "ナビゲーターをエシリア・ポートマン\nに変更します", + "ToolTipEn": "Change the navigator to ESHIRIA PORTMAN" + }, + { + "Id": 21, + "NavigatorName": "CIRNO (CHIRUPA)", + "Genre": 4, + "IllustrationCredit": "illustration by モタ\n「東方Project」より", + "ToolTipJp": "ナビゲーターをチルノ(チルパバージョン)\nに変更します", + "ToolTipEn": "Change the navigator to CIRNO(CHIRUPA)" + }, + { + "Id": 22, + "NavigatorName": "YUME (SCHOOL)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをユメ(学生服)に変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME(SCHOOL)\nCV: Nanami Takahashi" + }, + { + "Id": 23, + "NavigatorName": "SHINMYOUMARU", + "Genre": 4, + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より", + "ToolTipJp": "ナビゲーターを少名針妙丸に変更します", + "ToolTipEn": "Change the navigator to SHINMYOUMARU" + }, + { + "Id": 24, + "NavigatorName": "SANAE", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを東風谷早苗に変更します", + "ToolTipEn": "Change the navigator to SANAE" + }, + { + "Id": 25, + "NavigatorName": "SUTADONTAN", + "Genre": 2, + "IllustrationCredit": "illustration by 雉本ユーヒ", + "ToolTipJp": "ナビゲーターをすたどんたん殿下に\n変更します\nボイスを変更します(CV:山本椛)", + "ToolTipEn": "Change the navigator to SUTADONTAN\nCV: Momiji Yamamoto" + }, + { + "Id": 26, + "NavigatorName": "YUME (Xmas)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをユメ(クリスマス)に変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME(Xmas)\nCV: Nanami Takahashi" + }, + { + "Id": 27, + "NavigatorName": "IA", + "Genre": 5, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをIAに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to IA" + }, + { + "Id": 28, + "NavigatorName": "ONE", + "Genre": 5, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをONEに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to ONE" + }, + { + "Id": 29, + "NavigatorName": "Xenoa", + "Genre": 2, + "IllustrationCredit": "illustration by AO", + "ToolTipJp": "ナビゲーターをゼノアに\n変更します", + "ToolTipEn": "Change the navigator to Xenoa" + }, + { + "Id": 30, + "NavigatorName": "MIRAI", + "Genre": 3, + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より", + "ToolTipJp": "ナビゲーターをミライに変更します\nボイスを変更します(CV:松田利冴)", + "ToolTipEn": "Change the navigator to MIRAI\nCV: Risae Matsuda" + }, + { + "Id": 31, + "NavigatorName": "NAVI_OWL", + "Genre": 3, + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より", + "ToolTipJp": "ナビゲーターをナビウルに変更します\nボイスを変更します(CV:田中あいみ)", + "ToolTipEn": "Change the navigator to navi_Owl\nCV: Aimi Tanaka" + }, + { + "Id": 32, + "NavigatorName": "GUMI", + "Genre": 5, + "IllustrationCredit": "illustration by ゆうき まさみ\n\u3000(C) INTERNET Co., Ltd.", + "ToolTipJp": "ナビゲーターをGUMIに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to GUMI" + }, + { + "Id": 33, + "NavigatorName": "SEINE", + "Genre": 1, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをセイネに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE" + }, + { + "Id": 34, + "NavigatorName": "MIRIN", + "Genre": 6, + "IllustrationCredit": "illustration by 雉本ユーヒ", + "ToolTipJp": "ナビゲーターを古川未鈴に変更します\nボイスを変更します(CV:古川未鈴)", + "ToolTipEn": "Change the navigator to MIRIN\nCV: Mirin Furukawa" + }, + { + "Id": 35, + "NavigatorName": "CHEN", + "Genre": 4, + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より", + "ToolTipJp": "ナビゲーターを橙に変更します", + "ToolTipEn": "Change the navigator to CHEN" + }, + { + "Id": 36, + "NavigatorName": "KOGASA", + "Genre": 4, + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「東方Project」より", + "ToolTipJp": "ナビゲーターを多々良小傘に変更します", + "ToolTipEn": "Change the navigator to KOGASA" + }, + { + "Id": 37, + "NavigatorName": "MIKU(10th)", + "Genre": 5, + "IllustrationCredit": "illustration by 左", + "ToolTipJp": "ナビゲーターを\n初音ミク(10周年タイトーオリジナルVer.)\nに変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to MIKU(10th)\nCV: Saki Fujita" + }, + { + "Id": 38, + "NavigatorName": "SEINE(BIKINI)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをセイネ(ビキニ)\nに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(BIKINI)\nCV: Eriko Kawakami" + }, + { + "Id": 39, + "NavigatorName": "FRANDRE", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターをフランドール・スカーレット\nに変更します", + "ToolTipEn": "Change the navigator to FRANDRE" + }, + { + "Id": 40, + "NavigatorName": "AKANE GYARI Ver.", + "Genre": 5, + "IllustrationCredit": "illustration by GYARI", + "ToolTipJp": "ナビゲーターを琴葉茜(GYARI Ver.)\nに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to AKANE(GYARI Ver.)" + }, + { + "Id": 41, + "NavigatorName": "GUMI hatsuko Ver.", + "Genre": 5, + "IllustrationCredit": "illustration by hatsuko\n\u3000(C) INTERNET Co., Ltd.", + "ToolTipJp": "ナビゲーターをGUMI(hatsuko Ver.)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to GUMI(hatsuko Ver.)" + }, + { + "Id": 42, + "NavigatorName": "SEINE GYARI Ver.", + "Genre": 2, + "IllustrationCredit": "illustration by GYARI", + "ToolTipJp": "ナビゲーターをセイネ(GYARI Ver.)\nに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(GYARI Ver.)\nCV: Eriko Kawakami" + }, + { + "Id": 43, + "NavigatorName": "MIKOKO", + "Genre": 6, + "IllustrationCredit": "illustration by ねこます", + "ToolTipJp": "ナビゲーターをみここに変更します\nボイスを変更します(CV:ねこます)", + "ToolTipEn": "Change the navigator to MIKOKO\nCV: Nekomasu" + }, + { + "Id": 44, + "NavigatorName": "Voidoll", + "Genre": 6, + "IllustrationCredit": "illustration by ちゃもーい\n「#コンパス\n戦闘摂理解析システム」より", + "ToolTipJp": "ナビゲーターをVoidollに変更します", + "ToolTipEn": "Change the navigator to Voidoll" + }, + { + "Id": 45, + "NavigatorName": "13", + "Genre": 6, + "IllustrationCredit": "illustration by 緋紅 \u0026 NHN PlayArt\n「#コンパス\n戦闘摂理解析システム」より", + "ToolTipJp": "ナビゲーターを\n13\u002Bサーティーン\u002Bに変更します", + "ToolTipEn": "Change the navigator to 13" + }, + { + "Id": 46, + "NavigatorName": "MIKU(MAGICAL MIRAI)", + "Genre": 5, + "IllustrationCredit": "illustration by Mika Pikazo", + "ToolTipJp": "ナビゲーターを\n初音ミク(マジカルミライ2018 Ver.)\nに変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to\nMIKU(MAGICAL MIRAI)\nCV: Saki Fujita" + }, + { + "Id": 47, + "NavigatorName": "UDONGEIN", + "Genre": 4, + "IllustrationCredit": "illustration by Sara Matsuura\n「東方Project」より", + "ToolTipJp": "ナビゲーターを鈴仙・優曇華院・イナバ\nに変更します", + "ToolTipEn": "Change the navigator to UDONGEIN" + }, + { + "Id": 48, + "NavigatorName": "JUNKO", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを純狐に変更します", + "ToolTipEn": "Change the navigator to JUNKO" + }, + { + "Id": 49, + "NavigatorName": "KEFIR KOIZUMI", + "Genre": 2, + "IllustrationCredit": "illustration by ひろひろき", + "ToolTipJp": "ナビゲーターを小泉ケフィアに変更します", + "ToolTipEn": "Change the navigator to KEFIA KOIZUMI" + }, + { + "Id": 50, + "NavigatorName": "UNA OTOMACHI", + "Genre": 5, + "IllustrationCredit": "(C)MTK / INTERNET Co., Ltd.", + "ToolTipJp": "ナビゲーターを音街ウナに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to UNA OTOMACHI" + }, + { + "Id": 51, + "NavigatorName": "SEINE (PRINCESS)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをセイネ(プリンセス)\nに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(PRINCESS)\nCV: Eriko Kawakami" + }, + { + "Id": 52, + "NavigatorName": "SUWAKO", + "Genre": 4, + "IllustrationCredit": "illustration by Sody\n「東方Project」より", + "ToolTipJp": "ナビゲーターを洩矢諏訪子\nに変更します", + "ToolTipEn": "Change the navigator to SUWAKO" + }, + { + "Id": 53, + "NavigatorName": "Sans", + "Genre": 6, + "IllustrationCredit": "「UNDERTALE」より", + "ToolTipJp": "ナビゲーターをサンズに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Sans" + }, + { + "Id": 54, + "NavigatorName": "HIKARI", + "Genre": 6, + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2019", + "ToolTipJp": "ナビゲーターを光に変更します", + "ToolTipEn": "Change the navigator to Hikari" + }, + { + "Id": 55, + "NavigatorName": "TAIRITSU", + "Genre": 6, + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2019", + "ToolTipJp": "ナビゲーターを対立に変更します", + "ToolTipEn": "Change the navigator to Tairitsu" + }, + { + "Id": 56, + "NavigatorName": "Rarari Really", + "Genre": 2, + "IllustrationCredit": "illustration by ひろひろき", + "ToolTipJp": "ナビゲーターをRa々理りありに変更します", + "ToolTipEn": "Change the navigator to Rarari Really" + }, + { + "Id": 57, + "NavigatorName": "Lalari Fairy", + "Genre": 2, + "IllustrationCredit": "illustration by ひろひろき", + "ToolTipJp": "ナビゲーターをLa々理ふぇありに変更します", + "ToolTipEn": "Change the navigator to Lalari Fairy" + }, + { + "Id": 58, + "NavigatorName": "SAKUYA(Cool\u0026Create)", + "Genre": 4, + "IllustrationCredit": "illustration by 未影\n「東方Project」より", + "ToolTipJp": "ナビゲーターを十六夜咲夜\n(COOL\u0026CREATE Ver.)\nに変更します", + "ToolTipEn": "Change the navigator to SAKUYA\n(COOL\u0026CREATE Ver.)" + }, + { + "Id": 59, + "NavigatorName": "EL CLEAR", + "Genre": 6, + "IllustrationCredit": "「DJMAX RESPECT」より", + "ToolTipJp": "ナビゲーターをエル・クレアに変更します", + "ToolTipEn": "Change the navigator to El Clear" + }, + { + "Id": 60, + "NavigatorName": "EL FAIL", + "Genre": 6, + "IllustrationCredit": "「DJMAX RESPECT」より", + "ToolTipJp": "ナビゲーターをエル・フェイルに変更します", + "ToolTipEn": "Change the navigator to El Fail" + }, + { + "Id": 61, + "NavigatorName": "YUKARI YUZUKI", + "Genre": 5, + "IllustrationCredit": "(c)VOCALOMAKETS Powered by \nBumpy Factory Corporation.", + "ToolTipJp": "ナビゲーターを結月ゆかりに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to YUKARI YUZUKI" + }, + { + "Id": 62, + "NavigatorName": "ANDROMEDAKO", + "Genre": 5, + "IllustrationCredit": "illustration by NayutalieN", + "ToolTipJp": "ナビゲーターをアンドロメダ子に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to ANDROMEDAKO" + }, + { + "Id": 63, + "NavigatorName": "SEINE NAYUTAN Ver.", + "Genre": 2, + "IllustrationCredit": "illustration by Kenichirou Furuya\nsupervised by NayutalieN", + "ToolTipJp": "ナビゲーターをセイネ\n(ナユタン星人Ver.)に変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(NAYUTANver.)\nCV: Eriko Kawakami" + }, + { + "Id": 64, + "NavigatorName": "CIRNO (SUNTAN)", + "Genre": 4, + "IllustrationCredit": "illustration by Tomoko Tachibana\n「東方Project」より", + "ToolTipJp": "ナビゲーターを日焼けしたチルノに変更します", + "ToolTipEn": "Change the navigator to CIRNO\n(SUNTAN)" + }, + { + "Id": 65, + "NavigatorName": "SUI", + "Genre": 6, + "IllustrationCredit": "「DJMAX RESPECT」より", + "ToolTipJp": "ナビゲーターをスイに変更します", + "ToolTipEn": "Change the navigator to Sui" + }, + { + "Id": 66, + "NavigatorName": "Papyrus", + "Genre": 6, + "IllustrationCredit": "「UNDERTALE」より", + "ToolTipJp": "ナビゲーターをパピルスに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Papyrus" + }, + { + "Id": 67, + "NavigatorName": "OKINA", + "Genre": 4, + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「東方Project」より", + "ToolTipJp": "ナビゲーターを摩多羅隠岐奈に変更します", + "ToolTipEn": "Change the navigator to OKINA" + }, + { + "Id": 68, + "NavigatorName": "RITMO", + "Genre": 6, + "IllustrationCredit": "「Lanota」より", + "ToolTipJp": "ナビゲーターをリツモに変更します", + "ToolTipEn": "Change the navigator to Ritomo" + }, + { + "Id": 69, + "NavigatorName": "FISICA", + "Genre": 6, + "IllustrationCredit": "「Lanota」より", + "ToolTipJp": "ナビゲーターをフィシカに変更します", + "ToolTipEn": "Change the navigator to Fisica" + }, + { + "Id": 70, + "NavigatorName": "YUKARI YAKUMO", + "Genre": 4, + "IllustrationCredit": "illustration by 未影\n「東方Project」より", + "ToolTipJp": "ナビゲーターを八雲紫に変更します", + "ToolTipEn": "Change the navigator to YUKARI YAKUMO" + }, + { + "Id": 71, + "NavigatorName": "HIME TANAKA", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを田中ヒメに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to HIME TANAKA" + }, + { + "Id": 72, + "NavigatorName": "HINA SUZUKI", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを鈴木ヒナに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to HINA SUZUKI" + }, + { + "Id": 73, + "NavigatorName": "REIMU (TSB)", + "Genre": 4, + "IllustrationCredit": "illustration by 藤ちょこ\n「東方スペルバブル」より", + "ToolTipJp": "ナビゲーターを博麗霊夢\n(東方スペルバブル)に変更します", + "ToolTipEn": "Change the navigator to REIMU (TSB)" + }, + { + "Id": 74, + "NavigatorName": "MARISA (TSB)", + "Genre": 4, + "IllustrationCredit": "illustration by 荻pote\n「東方スペルバブル」より", + "ToolTipJp": "ナビゲーターを霧雨魔理沙\n(東方スペルバブル)に変更します", + "ToolTipEn": "Change the navigator to MARISA (TSB)" + }, + { + "Id": 75, + "NavigatorName": "MIRAI AKARI", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをミライアカリに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to MIRAI AKARI" + }, + { + "Id": 76, + "NavigatorName": "ELIZABETH", + "Genre": 6, + "IllustrationCredit": "illustration by LAM\n「WACCA」より", + "ToolTipJp": "ナビゲーターをエリザベスに変更します\nボイスを変更します(CV:大西沙織)", + "ToolTipEn": "Change the navigator to ELIZABETH\nCV: Saori Onishi" + }, + { + "Id": 77, + "NavigatorName": "KIZUNA AKARI", + "Genre": 5, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを紲星あかりに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to KIZUNA AKARI" + }, + { + "Id": 78, + "NavigatorName": "FLOWER (V4)", + "Genre": 5, + "IllustrationCredit": "illustration by △〇□×", + "ToolTipJp": "ナビゲーターをflower(V4)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to flower(V4)" + }, + { + "Id": 79, + "NavigatorName": "FLOWER (Talk)", + "Genre": 5, + "IllustrationCredit": "illustration by △〇□×", + "ToolTipJp": "ナビゲーターをflower(Talk)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to flower(Talk)" + }, + { + "Id": 80, + "NavigatorName": "NoA", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをNoAに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to NoA" + }, + { + "Id": 81, + "NavigatorName": "Io", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをIoに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Io" + }, + { + "Id": 82, + "NavigatorName": "Mana", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをManaに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Mana" + }, + { + "Id": 83, + "NavigatorName": "REMILIA", + "Genre": 4, + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より", + "ToolTipJp": "ナビゲーターをレミリア・\nスカーレットに変更します", + "ToolTipEn": "Change the navigator to REMILIA" + }, + { + "Id": 84, + "NavigatorName": "LUNA", + "Genre": 6, + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2020", + "ToolTipJp": "ナビゲーターをルナに変更します", + "ToolTipEn": "Change the navigator to Luna" + }, + { + "Id": 85, + "NavigatorName": "AOI GYARI Ver.", + "Genre": 5, + "IllustrationCredit": "illustration by GYARI", + "ToolTipJp": "ナビゲーターを琴葉葵(GYARI Ver.)\nに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to AOI(GYARI Ver.)" + }, + { + "Id": 86, + "NavigatorName": "SAKI", + "Genre": 4, + "IllustrationCredit": "illustration by MAKI\n「東方Project」より", + "ToolTipJp": "ナビゲーターを驪駒早鬼に変更します", + "ToolTipEn": "Change the navigator to SAKI" + }, + { + "Id": 87, + "NavigatorName": "BURO", + "Genre": 6, + "IllustrationCredit": "「Muse Dash」より", + "ToolTipJp": "ナビゲーターをブロウに変更します\nボイスを変更します(CV:甘束まお)", + "ToolTipEn": "Change the navigator to BURO\nCV: Mao Amatsuka" + }, + { + "Id": 88, + "NavigatorName": "YMIR", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをユミルに変更します", + "ToolTipEn": "Change the navigator to Ymir" + }, + { + "Id": 89, + "NavigatorName": "SIRO", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを電脳少女シロに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to SIRO" + }, + { + "Id": 90, + "NavigatorName": "MITO TSUKINO", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを月ノ美兎に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to MITO TSUKINO" + }, + { + "Id": 91, + "NavigatorName": "LILY", + "Genre": 6, + "IllustrationCredit": "illustration by LAM\n「WACCA」より", + "ToolTipJp": "ナビゲーターをリリィに変更します\nボイスを変更します(CV:青木志貴)", + "ToolTipEn": "Change the navigator to LILY\nCV: Shiki Aoki" + }, + { + "Id": 92, + "NavigatorName": "REIMU(TouhouLW)", + "Genre": 4, + "IllustrationCredit": "illustration by 夢野ろて\n「東方LostWord」より\n(C)上海アリス幻樂団 (C)GSC/NN", + "ToolTipJp": "ナビゲーターを博麗霊夢\n(東方LostWord)に変更します", + "ToolTipEn": "Change the navigator to REIMU(TouhouLW)" + }, + { + "Id": 93, + "NavigatorName": "MARISA(TouhouLW)", + "Genre": 4, + "IllustrationCredit": "illustration by 夢野ろて\n「東方LostWord」より\n(C)上海アリス幻樂団 (C)GSC/NN", + "ToolTipJp": "ナビゲーターを霧雨魔理沙\n(東方LostWord)に変更します", + "ToolTipEn": "Change the navigator to MARISA(TouhouLW)" + }, + { + "Id": 94, + "NavigatorName": "CHUNI PENGUIN", + "Genre": 6, + "IllustrationCredit": "illustration by SEGA\n「CHUNITHM」より", + "ToolTipJp": "ナビゲーターをチュウニペンギンに\n変更します", + "ToolTipEn": "Change the navigator to CHUNI PENGUIN" + }, + { + "Id": 95, + "NavigatorName": "RICHTSHUTZE", + "Genre": 6, + "IllustrationCredit": "illustration by タカヤマトシアキ\n「CHUNITHM」より", + "ToolTipJp": "ナビゲーターをリヒトシュッツェに\n変更します", + "ToolTipEn": "Change the navigator to RICHTSHUTZE" + }, + { + "Id": 96, + "NavigatorName": "MAGELLAN MAGELLAN", + "Genre": 6, + "IllustrationCredit": "illustration by ちゃもーい\n「CHUNITHM」より", + "ToolTipJp": "ナビゲーターをマゼラン・マゼランに\n変更します", + "ToolTipEn": "Change the navigator to\nMAGELLAN MAGELLAN" + }, + { + "Id": 97, + "NavigatorName": "MIKO SAKURA", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをさくらみこに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto MIKO SAKURA" + }, + { + "Id": 98, + "NavigatorName": "FUBUKI SHIRAKAMI", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを白上フブキに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto FUBUKI SHIRAKAMI" + }, + { + "Id": 99, + "NavigatorName": "MATSURI NATSUIRO", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを夏色まつりに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto MATSURI NATSUIRO" + }, + { + "Id": 100, + "NavigatorName": "MARINE HOUSHOU", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを宝鐘マリンに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto MARINE HOUSHOU" + }, + { + "Id": 101, + "NavigatorName": "SATORI", + "Genre": 4, + "IllustrationCredit": "illustration by めばる\n「東方Project」より", + "ToolTipJp": "ナビゲーターを古明地さとりに変更します", + "ToolTipEn": "Change the navigator to SATORI" + }, + { + "Id": 102, + "NavigatorName": "KOISHI", + "Genre": 4, + "IllustrationCredit": "illustration by 西沢5㍉\n「東方Project」より", + "ToolTipJp": "ナビゲーターを古明地こいしに変更します", + "ToolTipEn": "Change the navigator to KOISHI" + }, + { + "Id": 103, + "NavigatorName": "LINKA(Fairy)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをリンカ\n(Fairy)に変更します\nボイスを変更します(CV:豊田萌絵)", + "ToolTipEn": "Change the navigator to LINKA(Fairy)\nCV: Moe Toyota" + }, + { + "Id": 104, + "NavigatorName": "YUME(Fairy)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをユメ\n(Fairy)に変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME(Fairy)\nCV: Nanami Takahashi" + }, + { + "Id": 105, + "NavigatorName": "SEINE(Fairy)", + "Genre": 2, + "IllustrationCredit": "illustration by 未早", + "ToolTipJp": "ナビゲーターをセイネ\n(Fairy)に変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(Fairy)\nCV: Eriko Kawakami" + }, + { + "Id": 106, + "NavigatorName": "REIMU(TouhouDK)", + "Genre": 4, + "IllustrationCredit": "「東方ダンマクカグラ」より\n(C)上海アリス幻樂団", + "ToolTipJp": "ナビゲーターを博麗霊夢\n(東方ダンマクカグラ)に変更します", + "ToolTipEn": "Change the navigator to\nREIMU(TouhouDK)" + }, + { + "Id": 107, + "NavigatorName": "MARISA(TouhouDK)", + "Genre": 4, + "IllustrationCredit": "「東方ダンマクカグラ」より\n(C)上海アリス幻樂団", + "ToolTipJp": "ナビゲーターを霧雨魔理沙\n(東方ダンマクカグラ)に変更します", + "ToolTipEn": "Change the navigator to\nMARISA(TouhouDK)" + }, + { + "Id": 108, + "NavigatorName": "HIME(Ver.2)", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを田中ヒメ\n(Mr.VIRTUALIZER)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to\nHIME(Mr.VIRTUALIZER)" + }, + { + "Id": 109, + "NavigatorName": "HINA(Ver.2)", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを鈴木ヒナ\n(Mr.VIRTUALIZER)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to \nHINA(Mr.VIRTUALIZER)" + }, + { + "Id": 110, + "NavigatorName": "RINKU AIMOTO", + "Genre": 6, + "IllustrationCredit": "「D4DJ Groovy Mix」より", + "ToolTipJp": "ナビゲーターを愛本りんくに変更します\nボイスを変更します(CV:西尾夕香)", + "ToolTipEn": "Change the navigator to \nRinku Aimoto\nCV: Yuka Nishio" + }, + { + "Id": 111, + "NavigatorName": "KYOKO YAMATE", + "Genre": 6, + "IllustrationCredit": "「D4DJ Groovy Mix」より", + "ToolTipJp": "ナビゲーターを山手響子に変更します\nボイスを変更します(CV:愛美)", + "ToolTipEn": "Change the navigator to \nKyoko Yamate\nCV: Aimi" + }, + { + "Id": 112, + "NavigatorName": "SHONI PENGUIN", + "Genre": 6, + "IllustrationCredit": "illustration by SEGA\n「CHUNITHM」より", + "ToolTipJp": "ナビゲーターをショウニペンギンに\n変更します", + "ToolTipEn": "Change the navigator to SHONI PENGUIN" + }, + { + "Id": 113, + "NavigatorName": "SURVIVAL ZUNDOKO", + "Genre": 2, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをサバイバル ずんど子ちゃん\nに変更します\nボイスを変更します(CV:ちよこ)", + "ToolTipEn": "Change the navigator to\nSURVIVAL ZUNDOKO CHAN\nCV: Chiyoko" + }, + { + "Id": 114, + "NavigatorName": "HINATA NEKOMIYA", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターを猫宮ひなたに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to\nHINATA NEKOMIYA" + }, + { + "Id": 115, + "NavigatorName": "AKARI HOSHIZAKI", + "Genre": 6, + "IllustrationCredit": "illustration by SEGA\n「オンゲキ」より", + "ToolTipJp": "ナビゲーターを星咲あかりに変更します\nボイスを変更します(CV:赤尾ひかる)", + "ToolTipEn": "Change the navigator to\nAKARI HOSHIZAKI\nCV: Hikaru Akao" + }, + { + "Id": 116, + "NavigatorName": "SETSUNA SUMERAGI", + "Genre": 6, + "IllustrationCredit": "illustration by SEGA\n「オンゲキ」より", + "ToolTipJp": "ナビゲーターを皇城セツナに変更します\nボイスを変更します(CV:八巻アンナ)", + "ToolTipEn": "Change the navigator to\nSETSUNA SUMERAGI\nCV: Anna Yamaki" + }, + { + "Id": 117, + "NavigatorName": "KAGURANANA", + "Genre": 6, + "IllustrationCredit": "", + "ToolTipJp": "ナビゲーターをカグラナナに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to\nKAGURANANA" + } +] \ No newline at end of file diff --git a/WebUI/wwwroot/data/Titles.json b/WebUI/wwwroot/data/Titles.json new file mode 100644 index 0000000..9df1c84 --- /dev/null +++ b/WebUI/wwwroot/data/Titles.json @@ -0,0 +1,38712 @@ +[ + { + "Id": 0, + "TitleName": "GROOVER", + "UnlockRequirementJp": "初期状態から所持", + "UnlockRequirementEn": "Part of the default set", + "UnlockType": 1 + }, + { + "Id": 1, + "TitleName": "初代E CLASS", + "UnlockRequirementJp": "レベル10に昇格", + "UnlockRequirementEn": "Reach level 10", + "UnlockType": 27 + }, + { + "Id": 2, + "TitleName": "初代D CLASS", + "UnlockRequirementJp": "レベル20に昇格", + "UnlockRequirementEn": "Reach level 20", + "UnlockType": 27 + }, + { + "Id": 3, + "TitleName": "初代C CLASS", + "UnlockRequirementJp": "レベル30に昇格", + "UnlockRequirementEn": "Reach level 30", + "UnlockType": 27 + }, + { + "Id": 4, + "TitleName": "初代B CLASS", + "UnlockRequirementJp": "レベル40に昇格", + "UnlockRequirementEn": "Reach level 40", + "UnlockType": 27 + }, + { + "Id": 5, + "TitleName": "初代A CLASS", + "UnlockRequirementJp": "レベル50に昇格", + "UnlockRequirementEn": "Reach level 50", + "UnlockType": 27 + }, + { + "Id": 6, + "TitleName": "初代AA CLASS", + "UnlockRequirementJp": "レベル60に昇格", + "UnlockRequirementEn": "Reach level 60", + "UnlockType": 27 + }, + { + "Id": 7, + "TitleName": "初代AAA CLASS", + "UnlockRequirementJp": "レベル70に昇格", + "UnlockRequirementEn": "Reach level 70", + "UnlockType": 27 + }, + { + "Id": 8, + "TitleName": "初代S CLASS", + "UnlockRequirementJp": "レベル80に昇格", + "UnlockRequirementEn": "Reach level 80", + "UnlockType": 27 + }, + { + "Id": 9, + "TitleName": "初代SS CLASS", + "UnlockRequirementJp": "レベル90に昇格", + "UnlockRequirementEn": "Reach level 90", + "UnlockType": 27 + }, + { + "Id": 10, + "TitleName": "初代SSS CLASS", + "UnlockRequirementJp": "レベル100に昇格", + "UnlockRequirementEn": "Reach level 100", + "UnlockType": 27 + }, + { + "Id": 11, + "TitleName": "初代ELITE", + "UnlockRequirementJp": "レベル200に昇格", + "UnlockRequirementEn": "Reach level 200", + "UnlockType": 27 + }, + { + "Id": 12, + "TitleName": "初代DREAMER", + "UnlockRequirementJp": "レベル300に昇格", + "UnlockRequirementEn": "Reach level 300", + "UnlockType": 27 + }, + { + "Id": 13, + "TitleName": "初代COOL", + "UnlockRequirementJp": "レベル400に昇格", + "UnlockRequirementEn": "Reach level 400", + "UnlockType": 27 + }, + { + "Id": 14, + "TitleName": "初代BOOSTER", + "UnlockRequirementJp": "レベル500に昇格", + "UnlockRequirementEn": "Reach level 500", + "UnlockType": 27 + }, + { + "Id": 15, + "TitleName": "初代ANTHEM", + "UnlockRequirementJp": "レベル600に昇格", + "UnlockRequirementEn": "Reach level 600", + "UnlockType": 27 + }, + { + "Id": 16, + "TitleName": "初代SPECIALIST", + "UnlockRequirementJp": "レベル700に昇格", + "UnlockRequirementEn": "Reach level 700", + "UnlockType": 27 + }, + { + "Id": 17, + "TitleName": "初代EXPERT", + "UnlockRequirementJp": "レベル800に昇格", + "UnlockRequirementEn": "Reach level 800", + "UnlockType": 27 + }, + { + "Id": 18, + "TitleName": "初代PERFECT", + "UnlockRequirementJp": "レベル900に昇格", + "UnlockRequirementEn": "Reach level 900", + "UnlockType": 27 + }, + { + "Id": 19, + "TitleName": "初代MASTER", + "UnlockRequirementJp": "レベル999に昇格", + "UnlockRequirementEn": "Reach level 999", + "UnlockType": 27 + }, + { + "Id": 20, + "TitleName": "ルーキー", + "UnlockRequirementJp": "5ステージクリア", + "UnlockRequirementEn": "Cleared 5 stages", + "UnlockType": 2 + }, + { + "Id": 21, + "TitleName": "駆け出し", + "UnlockRequirementJp": "10ステージクリア", + "UnlockRequirementEn": "Cleared 10 stages", + "UnlockType": 2 + }, + { + "Id": 22, + "TitleName": "練習中", + "UnlockRequirementJp": "30ステージクリア", + "UnlockRequirementEn": "Cleared 30 stages", + "UnlockType": 2 + }, + { + "Id": 23, + "TitleName": "中級者", + "UnlockRequirementJp": "50ステージクリア", + "UnlockRequirementEn": "Cleared 50 stages", + "UnlockType": 2 + }, + { + "Id": 24, + "TitleName": "一人前", + "UnlockRequirementJp": "100ステージクリア", + "UnlockRequirementEn": "Cleared 100 stages", + "UnlockType": 2 + }, + { + "Id": 25, + "TitleName": "上級者", + "UnlockRequirementJp": "150ステージクリア", + "UnlockRequirementEn": "Cleared 150 stages", + "UnlockType": 2 + }, + { + "Id": 26, + "TitleName": "ベテラン", + "UnlockRequirementJp": "200ステージクリア", + "UnlockRequirementEn": "Cleared 200 stages", + "UnlockType": 2 + }, + { + "Id": 27, + "TitleName": "大物", + "UnlockRequirementJp": "250ステージクリア", + "UnlockRequirementEn": "Cleared 250 stages", + "UnlockType": 2 + }, + { + "Id": 28, + "TitleName": "大御所", + "UnlockRequirementJp": "300ステージクリア", + "UnlockRequirementEn": "Cleared 300 stages", + "UnlockType": 2 + }, + { + "Id": 29, + "TitleName": "GREAT", + "UnlockRequirementJp": "1ステージで50チェイン達成", + "UnlockRequirementEn": "Got 50 chains in 1 stages", + "UnlockType": 14 + }, + { + "Id": 30, + "TitleName": "WONDERFUL", + "UnlockRequirementJp": "1ステージで100チェイン達成", + "UnlockRequirementEn": "Got 100 chains in 1 stages", + "UnlockType": 14 + }, + { + "Id": 31, + "TitleName": "MARVELOUS", + "UnlockRequirementJp": "1ステージで300チェイン達成", + "UnlockRequirementEn": "Got 300 chains in 1 stages", + "UnlockType": 14 + }, + { + "Id": 32, + "TitleName": "FEVER", + "UnlockRequirementJp": "1ステージで500チェイン達成", + "UnlockRequirementEn": "Got 500 chains in 1 stages", + "UnlockType": 14 + }, + { + "Id": 33, + "TitleName": "COMPLETE", + "UnlockRequirementJp": "1ステージで1000チェイン達成", + "UnlockRequirementEn": "Got 1,000 chains in 1 stages", + "UnlockType": 14 + }, + { + "Id": 34, + "TitleName": "INFINITY", + "UnlockRequirementJp": "1ステージで1500チェイン達成", + "UnlockRequirementEn": "Got 1,500 chains in 1 stages", + "UnlockType": 14 + }, + { + "Id": 35, + "TitleName": "S級幼稚園児", + "UnlockRequirementJp": "S評価をSIMPLE1ステージで達成", + "UnlockRequirementEn": "Got an S for 1 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 36, + "TitleName": "S級小学生", + "UnlockRequirementJp": "S評価をSIMPLE5ステージで達成", + "UnlockRequirementEn": "Got an S for 5 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 37, + "TitleName": "S級中学生", + "UnlockRequirementJp": "S評価をSIMPLE10ステージで達成", + "UnlockRequirementEn": "Got an S for 10 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 38, + "TitleName": "S級高校生", + "UnlockRequirementJp": "S評価をSIMPLE20ステージで達成", + "UnlockRequirementEn": "Got an S for 20 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 39, + "TitleName": "S級準学士", + "UnlockRequirementJp": "S評価をSIMPLE30ステージで達成", + "UnlockRequirementEn": "Got an S for 30 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 40, + "TitleName": "S級学士", + "UnlockRequirementJp": "S評価をSIMPLE50ステージで達成", + "UnlockRequirementEn": "Got an S for 50 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 41, + "TitleName": "S級修士", + "UnlockRequirementJp": "S評価をSIMPLE70ステージで達成", + "UnlockRequirementEn": "Got an S for 70 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 42, + "TitleName": "S級博士", + "UnlockRequirementJp": "S評価をSIMPLE90ステージで達成", + "UnlockRequirementEn": "Got an S for 90 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 43, + "TitleName": "S級名誉博士", + "UnlockRequirementJp": "S評価をSIMPLE100ステージで達成", + "UnlockRequirementEn": "Got an S for 100 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 44, + "TitleName": "S級少尉", + "UnlockRequirementJp": "S評価をNORMAL1ステージで達成", + "UnlockRequirementEn": "Got an S for 1 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 45, + "TitleName": "S級中尉", + "UnlockRequirementJp": "S評価をNORMAL5ステージで達成", + "UnlockRequirementEn": "Got an S for 5 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 46, + "TitleName": "S級大尉", + "UnlockRequirementJp": "S評価をNORMAL10ステージで達成", + "UnlockRequirementEn": "Got an S for 10 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 47, + "TitleName": "S級少佐", + "UnlockRequirementJp": "S評価をNORMAL20ステージで達成", + "UnlockRequirementEn": "Got an S for 20 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 48, + "TitleName": "S級中佐", + "UnlockRequirementJp": "S評価をNORMAL30ステージで達成", + "UnlockRequirementEn": "Got an S for 30 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 49, + "TitleName": "S級大佐", + "UnlockRequirementJp": "S評価をNORMAL50ステージで達成", + "UnlockRequirementEn": "Got an S for 50 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 50, + "TitleName": "S級少将", + "UnlockRequirementJp": "S評価をNORMAL70ステージで達成", + "UnlockRequirementEn": "Got an S for 70 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 51, + "TitleName": "S級中将", + "UnlockRequirementJp": "S評価をNORMAL90ステージで達成", + "UnlockRequirementEn": "Got an S for 90 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 52, + "TitleName": "S級大将", + "UnlockRequirementJp": "S評価をNORMAL100ステージで達成", + "UnlockRequirementEn": "Got an S for 100 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 53, + "TitleName": "S級凡人", + "UnlockRequirementJp": "S評価をHARD1ステージで達成", + "UnlockRequirementEn": "Got an S for 1 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 54, + "TitleName": "S級名人", + "UnlockRequirementJp": "S評価をHARD5ステージで達成", + "UnlockRequirementEn": "Got an S for 5 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 55, + "TitleName": "S級達人", + "UnlockRequirementJp": "S評価をHARD10ステージで達成", + "UnlockRequirementEn": "Got an S for 10 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 56, + "TitleName": "S級超人", + "UnlockRequirementJp": "S評価をHARD20ステージで達成", + "UnlockRequirementEn": "Got an S for 20 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 57, + "TitleName": "S級仙人", + "UnlockRequirementJp": "S評価をHARD30ステージで達成", + "UnlockRequirementEn": "Got an S for 30 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 58, + "TitleName": "S級鬼神", + "UnlockRequirementJp": "S評価をHARD50ステージで達成", + "UnlockRequirementEn": "Got an S for 50 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 59, + "TitleName": "S級修羅", + "UnlockRequirementJp": "S評価をHARD70ステージで達成", + "UnlockRequirementEn": "Got an S for 70 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 60, + "TitleName": "S級羅刹", + "UnlockRequirementJp": "S評価をHARD90ステージで達成", + "UnlockRequirementEn": "Got an S for 90 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 61, + "TitleName": "S級神", + "UnlockRequirementJp": "S評価をHARD100ステージで達成", + "UnlockRequirementEn": "Got an S for 100 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 62, + "TitleName": "グルーヴ一級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n1曲で達成", + "UnlockRequirementEn": "Got an S for 1 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 63, + "TitleName": "グルーヴ初段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n5曲で達成", + "UnlockRequirementEn": "Got an S for 5 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 64, + "TitleName": "グルーヴ二段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n10曲で達成", + "UnlockRequirementEn": "Got an S for 10 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 65, + "TitleName": "グルーヴ三段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n20曲で達成", + "UnlockRequirementEn": "Got an S for 20 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 66, + "TitleName": "グルーヴ四段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n30曲で達成", + "UnlockRequirementEn": "Got an S for 30 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 67, + "TitleName": "グルーヴ五段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n40曲で達成", + "UnlockRequirementEn": "Got an S for 40 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 68, + "TitleName": "グルーヴ六段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n50曲で達成", + "UnlockRequirementEn": "Got an S for 50 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 69, + "TitleName": "グルーヴ七段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n60曲で達成", + "UnlockRequirementEn": "Got an S for 60 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 70, + "TitleName": "グルーヴ八段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n70曲で達成", + "UnlockRequirementEn": "Got an S for 70 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 71, + "TitleName": "グルーヴ九段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n80曲で達成", + "UnlockRequirementEn": "Got an S for 80 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 72, + "TitleName": "グルーヴ十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n90曲で達成", + "UnlockRequirementEn": "Got an S for 90 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 73, + "TitleName": "グルーヴ皆伝", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n100曲で達成", + "UnlockRequirementEn": "Got an S for 100 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 74, + "TitleName": "PAWN", + "UnlockRequirementJp": "NO\u3000MISSを1ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1 stages", + "UnlockType": 3 + }, + { + "Id": 75, + "TitleName": "KNIGHT", + "UnlockRequirementJp": "NO\u3000MISSを10ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 10 stages", + "UnlockType": 3 + }, + { + "Id": 76, + "TitleName": "BISHOP", + "UnlockRequirementJp": "NO\u3000MISSを30ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 30 stages", + "UnlockType": 3 + }, + { + "Id": 77, + "TitleName": "ROOK", + "UnlockRequirementJp": "NO\u3000MISSを50ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 50 stages", + "UnlockType": 3 + }, + { + "Id": 78, + "TitleName": "PRINCESS", + "UnlockRequirementJp": "NO\u3000MISSを100ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 100 stages", + "UnlockType": 3 + }, + { + "Id": 79, + "TitleName": "PRINCE", + "UnlockRequirementJp": "NO\u3000MISSを150ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 150 stages", + "UnlockType": 3 + }, + { + "Id": 80, + "TitleName": "QUEEN", + "UnlockRequirementJp": "NO\u3000MISSを200ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 200 stages", + "UnlockType": 3 + }, + { + "Id": 81, + "TitleName": "KING", + "UnlockRequirementJp": "NO\u3000MISSを250ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 250 stages", + "UnlockType": 3 + }, + { + "Id": 82, + "TitleName": "MUSICIAN", + "UnlockRequirementJp": "FULL\u3000CHAINを1ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1 stages", + "UnlockType": 4 + }, + { + "Id": 83, + "TitleName": "ARTIST", + "UnlockRequirementJp": "FULL\u3000CHAINを10ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 10 stages", + "UnlockType": 4 + }, + { + "Id": 84, + "TitleName": "TECHNICIAN", + "UnlockRequirementJp": "FULL\u3000CHAINを20ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 20 stages", + "UnlockType": 4 + }, + { + "Id": 85, + "TitleName": "MAGICIAN", + "UnlockRequirementJp": "FULL\u3000CHAINを30ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 30 stages", + "UnlockType": 4 + }, + { + "Id": 86, + "TitleName": "PRO", + "UnlockRequirementJp": "FULL\u3000CHAINを50ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 50 stages", + "UnlockType": 4 + }, + { + "Id": 87, + "TitleName": "STAR", + "UnlockRequirementJp": "FULL\u3000CHAINを100ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 100 stages", + "UnlockType": 4 + }, + { + "Id": 88, + "TitleName": "BIG STAR", + "UnlockRequirementJp": "FULL\u3000CHAINを150ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 150 stages", + "UnlockType": 4 + }, + { + "Id": 89, + "TitleName": "SUPER STAR", + "UnlockRequirementJp": "FULL\u3000CHAINを200ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 200 stages", + "UnlockType": 4 + }, + { + "Id": 90, + "TitleName": "FANTASISTA", + "UnlockRequirementJp": "FULL\u3000CHAINを250ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 250 stages", + "UnlockType": 4 + }, + { + "Id": 91, + "TitleName": "GHOST", + "UnlockRequirementJp": "MISS\u30000を5ステージ連続で達成", + "UnlockRequirementEn": "Cleared 5 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 92, + "TitleName": "SPIRIT", + "UnlockRequirementJp": "MISS\u30000を10ステージ連続で達成", + "UnlockRequirementEn": "Cleared 10 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 93, + "TitleName": "FAIRY", + "UnlockRequirementJp": "MISS\u30000を20ステージ連続で達成", + "UnlockRequirementEn": "Cleared 20 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 94, + "TitleName": "PHANTOM", + "UnlockRequirementJp": "MISS\u30000を30ステージ連続で達成", + "UnlockRequirementEn": "Cleared 30 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 95, + "TitleName": "DEVIL", + "UnlockRequirementJp": "MISS\u30000を40ステージ連続で達成", + "UnlockRequirementEn": "Cleared 40 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 96, + "TitleName": "DEATH", + "UnlockRequirementJp": "MISS\u30000を50ステージ連続で達成", + "UnlockRequirementEn": "Cleared 50 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 97, + "TitleName": "HELL", + "UnlockRequirementJp": "MISS\u30000を60ステージ連続で達成", + "UnlockRequirementEn": "Cleared 60 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 98, + "TitleName": "SATAN", + "UnlockRequirementJp": "MISS\u30000を70ステージ連続で達成", + "UnlockRequirementEn": "Cleared 70 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 99, + "TitleName": "ANGEL", + "UnlockRequirementJp": "MISS\u30000を80ステージ連続で達成", + "UnlockRequirementEn": "Cleared 80 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 100, + "TitleName": "HEAVEN", + "UnlockRequirementJp": "MISS\u30000を90ステージ連続で達成", + "UnlockRequirementEn": "Cleared 90 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 101, + "TitleName": "GOD", + "UnlockRequirementJp": "MISS\u30000を100ステージ連続で達成", + "UnlockRequirementEn": "Cleared 100 consecutive stages\nwith no misses", + "UnlockType": 16 + }, + { + "Id": 102, + "TitleName": "アドリブ調査員", + "UnlockRequirementJp": "ターゲットのない場所で10回以上タップ", + "UnlockRequirementEn": "Tapped places with no targets\n10 or more times", + "UnlockType": 15 + }, + { + "Id": 103, + "TitleName": "アドリブ社員", + "UnlockRequirementJp": "アドリブ成功数の合計が10を超える", + "UnlockRequirementEn": "Performed 10 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 104, + "TitleName": "アドリブ係長", + "UnlockRequirementJp": "アドリブ成功数の合計が50を超える", + "UnlockRequirementEn": "Performed 50 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 105, + "TitleName": "アドリブ課長", + "UnlockRequirementJp": "アドリブ成功数の合計が100を超える", + "UnlockRequirementEn": "Performed 100 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 106, + "TitleName": "アドリブ部長", + "UnlockRequirementJp": "アドリブ成功数の合計が200を超える", + "UnlockRequirementEn": "Performed 200 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 107, + "TitleName": "アドリブ社長", + "UnlockRequirementJp": "アドリブ成功数の合計が300を超える", + "UnlockRequirementEn": "Performed 300 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 108, + "TitleName": "アドリブ会長", + "UnlockRequirementJp": "アドリブ成功数の合計が500を超える", + "UnlockRequirementEn": "Performed 500 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 109, + "TitleName": "アバター自慢", + "UnlockRequirementJp": "アバターを5種類集める", + "UnlockRequirementEn": "Collected 5 avatars", + "UnlockType": 18 + }, + { + "Id": 110, + "TitleName": "アバターコレクター", + "UnlockRequirementJp": "アバターを10種類集める", + "UnlockRequirementEn": "Collected 10 avatars", + "UnlockType": 18 + }, + { + "Id": 111, + "TitleName": "アバターマニア", + "UnlockRequirementJp": "アバターを20種類集める", + "UnlockRequirementEn": "Collected 20 avatars", + "UnlockType": 18 + }, + { + "Id": 112, + "TitleName": "アバターマスター", + "UnlockRequirementJp": "アバターを30種類集める", + "UnlockRequirementEn": "Collected 30 avatars", + "UnlockType": 18 + }, + { + "Id": 113, + "TitleName": "初代店内勝者", + "UnlockRequirementJp": "店内対戦プレイで累計星10個獲得", + "UnlockRequirementEn": "Got 10 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 114, + "TitleName": "初代店内番長", + "UnlockRequirementJp": "店内対戦プレイで累計星25個獲得", + "UnlockRequirementEn": "Got 25 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 115, + "TitleName": "初代店内大王", + "UnlockRequirementJp": "店内対戦プレイで累計星50個獲得", + "UnlockRequirementEn": "Got 50 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 116, + "TitleName": "初代店内覇者", + "UnlockRequirementJp": "店内対戦プレイで累計星75個獲得", + "UnlockRequirementEn": "Got 75 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 117, + "TitleName": "初代店内覇王", + "UnlockRequirementJp": "店内対戦プレイで累計星100個獲得", + "UnlockRequirementEn": "Got 100 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 118, + "TitleName": "初代店内帝王", + "UnlockRequirementJp": "店内対戦プレイで累計星200個獲得", + "UnlockRequirementEn": "Got 200 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 119, + "TitleName": "初代店内皇帝", + "UnlockRequirementJp": "店内対戦プレイで累計星300個獲得", + "UnlockRequirementEn": "Got 300 stars in multiplayer matches", + "UnlockType": 19 + }, + { + "Id": 120, + "TitleName": "初代☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星5個獲得", + "UnlockRequirementEn": "Got 5 stars for 1 song in multiplayer", + "UnlockType": 19 + }, + { + "Id": 121, + "TitleName": "初代☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星10個獲得", + "UnlockRequirementEn": "Got 10 stars for 1 song in multiplayer", + "UnlockType": 19 + }, + { + "Id": 122, + "TitleName": "初代☆☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星12個獲得", + "UnlockRequirementEn": "Got 12 stars for 1 song in multiplayer", + "UnlockType": 19 + }, + { + "Id": 123, + "TitleName": "初代☆☆☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星15個獲得", + "UnlockRequirementEn": "Got 15 stars for 1 song in multiplayer", + "UnlockType": 19 + }, + { + "Id": 124, + "TitleName": "初代☆☆☆☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星18個獲得", + "UnlockRequirementEn": "Got 18 stars for 1 song in multiplayer", + "UnlockType": 19 + }, + { + "Id": 125, + "TitleName": "アイテム試し中", + "UnlockRequirementJp": "アイテムを使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using items", + "UnlockType": 17 + }, + { + "Id": 126, + "TitleName": "アイテム使い", + "UnlockRequirementJp": "アイテムを使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using items", + "UnlockType": 17 + }, + { + "Id": 127, + "TitleName": "アイテムマスター", + "UnlockRequirementJp": "アイテムを使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using items", + "UnlockType": 17 + }, + { + "Id": 128, + "TitleName": "大金持ち", + "UnlockRequirementJp": "アイテムを使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using items", + "UnlockType": 17 + }, + { + "Id": 129, + "TitleName": "セレブ", + "UnlockRequirementJp": "アイテムを使って200回クリア", + "UnlockRequirementEn": "Cleared 200 stages using items", + "UnlockType": 17 + }, + { + "Id": 130, + "TitleName": "V.I.P", + "UnlockRequirementJp": "アイテムを使って300回クリア", + "UnlockRequirementEn": "Cleared 300 stages using items", + "UnlockType": 17 + }, + { + "Id": 131, + "TitleName": "大富豪", + "UnlockRequirementJp": "アイテムを使って400回クリア", + "UnlockRequirementEn": "Cleared 400 stages using items", + "UnlockType": 17 + }, + { + "Id": 132, + "TitleName": "億万長者", + "UnlockRequirementJp": "アイテムを使って500回クリア", + "UnlockRequirementEn": "Cleared 500 stages using items", + "UnlockType": 17 + }, + { + "Id": 133, + "TitleName": "鏡の通", + "UnlockRequirementJp": "「MIRROR」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using MIRROR", + "UnlockType": 17 + }, + { + "Id": 134, + "TitleName": "鏡の専門家", + "UnlockRequirementJp": "「MIRROR」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using MIRROR", + "UnlockType": 17 + }, + { + "Id": 135, + "TitleName": "鏡の熟練者", + "UnlockRequirementJp": "「MIRROR」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using MIRROR", + "UnlockType": 17 + }, + { + "Id": 136, + "TitleName": "鏡の王", + "UnlockRequirementJp": "「MIRROR」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using MIRROR", + "UnlockType": 17 + }, + { + "Id": 137, + "TitleName": "道なき道の挑戦者", + "UnlockRequirementJp": "「NO\u3000WAY」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using NO WAY", + "UnlockType": 17 + }, + { + "Id": 138, + "TitleName": "道なき道の開拓者", + "UnlockRequirementJp": "「NO\u3000WAY」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using NO WAY", + "UnlockType": 17 + }, + { + "Id": 139, + "TitleName": "道なき道の案内人", + "UnlockRequirementJp": "「NO\u3000WAY」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using NO WAY", + "UnlockType": 17 + }, + { + "Id": 140, + "TitleName": "道なき道の王", + "UnlockRequirementJp": "「NO\u3000WAY」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using NO WAY", + "UnlockType": 17 + }, + { + "Id": 141, + "TitleName": "裏番長", + "UnlockRequirementJp": "「REVERSE」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using REVERSE", + "UnlockType": 17 + }, + { + "Id": 142, + "TitleName": "裏ボス", + "UnlockRequirementJp": "「REVERSE」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using REVERSE", + "UnlockType": 17 + }, + { + "Id": 143, + "TitleName": "裏将軍", + "UnlockRequirementJp": "「REVERSE」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using REVERSE", + "UnlockType": 17 + }, + { + "Id": 144, + "TitleName": "裏皇帝", + "UnlockRequirementJp": "「REVERSE」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using REVERSE", + "UnlockType": 17 + }, + { + "Id": 145, + "TitleName": "隠れた逸材", + "UnlockRequirementJp": "「HIDDEN」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using HIDDEN", + "UnlockType": 17 + }, + { + "Id": 146, + "TitleName": "隠れた強者", + "UnlockRequirementJp": "「HIDDEN」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using HIDDEN", + "UnlockType": 17 + }, + { + "Id": 147, + "TitleName": "隠れた猛者", + "UnlockRequirementJp": "「HIDDEN」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using HIDDEN", + "UnlockType": 17 + }, + { + "Id": 148, + "TitleName": "隠れた覇者", + "UnlockRequirementJp": "「HIDDEN」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using HIDDEN", + "UnlockType": 17 + }, + { + "Id": 149, + "TitleName": "鋭い反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using SUDDEN", + "UnlockType": 17 + }, + { + "Id": 150, + "TitleName": "抜群の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using SUDDEN", + "UnlockType": 17 + }, + { + "Id": 151, + "TitleName": "音速の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using SUDDEN", + "UnlockType": 17 + }, + { + "Id": 152, + "TitleName": "光速の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using SUDDEN", + "UnlockType": 17 + }, + { + "Id": 153, + "TitleName": "リズム感の妖精", + "UnlockRequirementJp": "「JUST」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using JUST", + "UnlockType": 17 + }, + { + "Id": 154, + "TitleName": "リズム感の鬼", + "UnlockRequirementJp": "「JUST」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using JUST", + "UnlockType": 17 + }, + { + "Id": 155, + "TitleName": "リズム感の化物", + "UnlockRequirementJp": "「JUST」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using JUST", + "UnlockType": 17 + }, + { + "Id": 156, + "TitleName": "リズム感の怪物", + "UnlockRequirementJp": "「JUST」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using JUST", + "UnlockType": 17 + }, + { + "Id": 157, + "TitleName": "ステルスクリア", + "UnlockRequirementJp": "「STEALTH」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using STEALTH", + "UnlockType": 17 + }, + { + "Id": 158, + "TitleName": "ステルスマニア", + "UnlockRequirementJp": "「STEALTH」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using STEALTH", + "UnlockType": 17 + }, + { + "Id": 159, + "TitleName": "ステルスマスター", + "UnlockRequirementJp": "「STEALTH」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using STEALTH", + "UnlockType": 17 + }, + { + "Id": 160, + "TitleName": "ステルスキング", + "UnlockRequirementJp": "「STEALTH」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using STEALTH", + "UnlockType": 17 + }, + { + "Id": 161, + "TitleName": "おはようございます", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 162, + "TitleName": "こんにちは", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 163, + "TitleName": "こんばんは", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 164, + "TitleName": "おやすみなさい", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 165, + "TitleName": "モーニンググルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 166, + "TitleName": "デイグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 167, + "TitleName": "イヴニンググルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 168, + "TitleName": "ナイトグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 169, + "TitleName": "エニタイムグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 170, + "TitleName": "エブリデイグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 171, + "TitleName": "北海道勢", + "UnlockRequirementJp": "北海道でプレイ", + "UnlockRequirementEn": "Played in Hokkaido", + "UnlockType": 13 + }, + { + "Id": 172, + "TitleName": "青森勢", + "UnlockRequirementJp": "青森県でプレイ", + "UnlockRequirementEn": "Played in Aomori Prefecture", + "UnlockType": 13 + }, + { + "Id": 173, + "TitleName": "岩手勢", + "UnlockRequirementJp": "岩手県でプレイ", + "UnlockRequirementEn": "Played in Iwate Prefecture", + "UnlockType": 13 + }, + { + "Id": 174, + "TitleName": "宮城勢", + "UnlockRequirementJp": "宮城県でプレイ", + "UnlockRequirementEn": "Played in Miyagi Prefecture", + "UnlockType": 13 + }, + { + "Id": 175, + "TitleName": "秋田勢", + "UnlockRequirementJp": "秋田県でプレイ", + "UnlockRequirementEn": "Played in Akita Prefecture", + "UnlockType": 13 + }, + { + "Id": 176, + "TitleName": "山形勢", + "UnlockRequirementJp": "山形県でプレイ", + "UnlockRequirementEn": "Played in Yamagata Prefecture", + "UnlockType": 13 + }, + { + "Id": 177, + "TitleName": "福島勢", + "UnlockRequirementJp": "福島県でプレイ", + "UnlockRequirementEn": "Played in Fukushima Prefecture", + "UnlockType": 13 + }, + { + "Id": 178, + "TitleName": "茨城勢", + "UnlockRequirementJp": "茨城県でプレイ", + "UnlockRequirementEn": "Played in Ibaraki Prefecture", + "UnlockType": 13 + }, + { + "Id": 179, + "TitleName": "栃木勢", + "UnlockRequirementJp": "栃木県でプレイ", + "UnlockRequirementEn": "Played in Tochigi Prefecture", + "UnlockType": 13 + }, + { + "Id": 180, + "TitleName": "群馬勢", + "UnlockRequirementJp": "群馬県でプレイ", + "UnlockRequirementEn": "Played in Gunma Prefecture", + "UnlockType": 13 + }, + { + "Id": 181, + "TitleName": "埼玉勢", + "UnlockRequirementJp": "埼玉県でプレイ", + "UnlockRequirementEn": "Played in Saitama Prefecture", + "UnlockType": 13 + }, + { + "Id": 182, + "TitleName": "千葉勢", + "UnlockRequirementJp": "千葉県でプレイ", + "UnlockRequirementEn": "Played in Chiba Prefecture", + "UnlockType": 13 + }, + { + "Id": 183, + "TitleName": "東京勢", + "UnlockRequirementJp": "東京都でプレイ", + "UnlockRequirementEn": "Played in Tokyo.", + "UnlockType": 13 + }, + { + "Id": 184, + "TitleName": "神奈川勢", + "UnlockRequirementJp": "神奈川県でプレイ", + "UnlockRequirementEn": "Played in Kanagawa Prefecture", + "UnlockType": 13 + }, + { + "Id": 185, + "TitleName": "山梨勢", + "UnlockRequirementJp": "山梨県でプレイ", + "UnlockRequirementEn": "Played in Yamanashi Prefecture", + "UnlockType": 13 + }, + { + "Id": 186, + "TitleName": "長野勢", + "UnlockRequirementJp": "長野県でプレイ", + "UnlockRequirementEn": "Played in Nagano Prefecture", + "UnlockType": 13 + }, + { + "Id": 187, + "TitleName": "新潟勢", + "UnlockRequirementJp": "新潟県でプレイ", + "UnlockRequirementEn": "Played in Niigata Prefecture", + "UnlockType": 13 + }, + { + "Id": 188, + "TitleName": "富山勢", + "UnlockRequirementJp": "富山県でプレイ", + "UnlockRequirementEn": "Played in Toyama Prefecture", + "UnlockType": 13 + }, + { + "Id": 189, + "TitleName": "石川勢", + "UnlockRequirementJp": "石川県でプレイ", + "UnlockRequirementEn": "Played in Ishikawa Prefecture", + "UnlockType": 13 + }, + { + "Id": 190, + "TitleName": "福井勢", + "UnlockRequirementJp": "福井県でプレイ", + "UnlockRequirementEn": "Played in Fukui Prefecture", + "UnlockType": 13 + }, + { + "Id": 191, + "TitleName": "静岡勢", + "UnlockRequirementJp": "静岡県でプレイ", + "UnlockRequirementEn": "Played in Shizuoka Prefecture", + "UnlockType": 13 + }, + { + "Id": 192, + "TitleName": "愛知勢", + "UnlockRequirementJp": "愛知県でプレイ", + "UnlockRequirementEn": "Played in Aichi Prefecture", + "UnlockType": 13 + }, + { + "Id": 193, + "TitleName": "岐阜勢", + "UnlockRequirementJp": "岐阜県でプレイ", + "UnlockRequirementEn": "Played in Gifu Prefecture", + "UnlockType": 13 + }, + { + "Id": 194, + "TitleName": "三重勢", + "UnlockRequirementJp": "三重県でプレイ", + "UnlockRequirementEn": "Played in Mie Prefecture", + "UnlockType": 13 + }, + { + "Id": 195, + "TitleName": "滋賀勢", + "UnlockRequirementJp": "滋賀県でプレイ", + "UnlockRequirementEn": "Played in Shiga Prefecture", + "UnlockType": 13 + }, + { + "Id": 196, + "TitleName": "京都勢", + "UnlockRequirementJp": "京都府でプレイ", + "UnlockRequirementEn": "Played in Kyoto Prefecture", + "UnlockType": 13 + }, + { + "Id": 197, + "TitleName": "大阪勢", + "UnlockRequirementJp": "大阪府でプレイ", + "UnlockRequirementEn": "Played in Osaka Prefecture", + "UnlockType": 13 + }, + { + "Id": 198, + "TitleName": "兵庫勢", + "UnlockRequirementJp": "兵庫県でプレイ", + "UnlockRequirementEn": "Played in Hyogo Prefecture", + "UnlockType": 13 + }, + { + "Id": 199, + "TitleName": "奈良勢", + "UnlockRequirementJp": "奈良県でプレイ", + "UnlockRequirementEn": "Played in Nara Prefecture", + "UnlockType": 13 + }, + { + "Id": 200, + "TitleName": "和歌山勢", + "UnlockRequirementJp": "和歌山県でプレイ", + "UnlockRequirementEn": "Played in Wakayama Prefecture", + "UnlockType": 13 + }, + { + "Id": 201, + "TitleName": "岡山勢", + "UnlockRequirementJp": "岡山県でプレイ", + "UnlockRequirementEn": "Played in Okayama Prefecture", + "UnlockType": 13 + }, + { + "Id": 202, + "TitleName": "広島勢", + "UnlockRequirementJp": "広島県でプレイ", + "UnlockRequirementEn": "Played in Hiroshima Prefecture", + "UnlockType": 13 + }, + { + "Id": 203, + "TitleName": "鳥取勢", + "UnlockRequirementJp": "鳥取県でプレイ", + "UnlockRequirementEn": "Played in Tottori Prefecture", + "UnlockType": 13 + }, + { + "Id": 204, + "TitleName": "島根勢", + "UnlockRequirementJp": "島根県でプレイ", + "UnlockRequirementEn": "Played in Shimane Prefecture", + "UnlockType": 13 + }, + { + "Id": 205, + "TitleName": "山口勢", + "UnlockRequirementJp": "山口県でプレイ", + "UnlockRequirementEn": "Played in Yamaguchi Prefecture", + "UnlockType": 13 + }, + { + "Id": 206, + "TitleName": "徳島勢", + "UnlockRequirementJp": "徳島県でプレイ", + "UnlockRequirementEn": "Played in Tokushima Prefecture", + "UnlockType": 13 + }, + { + "Id": 207, + "TitleName": "香川勢", + "UnlockRequirementJp": "香川県でプレイ", + "UnlockRequirementEn": "Played in Kagawa Prefecture", + "UnlockType": 13 + }, + { + "Id": 208, + "TitleName": "愛媛勢", + "UnlockRequirementJp": "愛媛県でプレイ", + "UnlockRequirementEn": "Played in Ehime Prefecture", + "UnlockType": 13 + }, + { + "Id": 209, + "TitleName": "高知勢", + "UnlockRequirementJp": "高知県でプレイ", + "UnlockRequirementEn": "Played in Kochi Prefecture", + "UnlockType": 13 + }, + { + "Id": 210, + "TitleName": "福岡勢", + "UnlockRequirementJp": "福岡県でプレイ", + "UnlockRequirementEn": "Played in Fukuoka Prefecture", + "UnlockType": 13 + }, + { + "Id": 211, + "TitleName": "佐賀勢", + "UnlockRequirementJp": "佐賀県でプレイ", + "UnlockRequirementEn": "Played in Saga Prefecture", + "UnlockType": 13 + }, + { + "Id": 212, + "TitleName": "長崎勢", + "UnlockRequirementJp": "長崎県でプレイ", + "UnlockRequirementEn": "Played in Nagasaki Prefecture", + "UnlockType": 13 + }, + { + "Id": 213, + "TitleName": "熊本勢", + "UnlockRequirementJp": "熊本県でプレイ", + "UnlockRequirementEn": "Played in Kumamoto Prefecture", + "UnlockType": 13 + }, + { + "Id": 214, + "TitleName": "大分勢", + "UnlockRequirementJp": "大分県でプレイ", + "UnlockRequirementEn": "Played in Oita Prefecture", + "UnlockType": 13 + }, + { + "Id": 215, + "TitleName": "宮崎勢", + "UnlockRequirementJp": "宮崎県でプレイ", + "UnlockRequirementEn": "Played in Miyazaki Prefecture", + "UnlockType": 13 + }, + { + "Id": 216, + "TitleName": "鹿児島勢", + "UnlockRequirementJp": "鹿児島県でプレイ", + "UnlockRequirementEn": "Played in Kagoshima Prefecture", + "UnlockType": 13 + }, + { + "Id": 217, + "TitleName": "沖縄勢", + "UnlockRequirementJp": "沖縄県でプレイ", + "UnlockRequirementEn": "Played in Okinawa Prefecture", + "UnlockType": 13 + }, + { + "Id": 218, + "TitleName": "海外遠征勢", + "UnlockRequirementJp": "初期登録を行った国とは別の国でプレイ", + "UnlockRequirementEn": "Played outside the country initially registered", + "UnlockType": 13 + }, + { + "Id": 219, + "TitleName": "遠征", + "UnlockRequirementJp": "3都道府県でプレイ", + "UnlockRequirementEn": "Played in 3 prefectures", + "UnlockType": 13 + }, + { + "Id": 220, + "TitleName": "地域制覇", + "UnlockRequirementJp": "5都道府県でプレイ", + "UnlockRequirementEn": "Played in 5 prefectures", + "UnlockType": 13 + }, + { + "Id": 221, + "TitleName": "旅人", + "UnlockRequirementJp": "10都道府県でプレイ", + "UnlockRequirementEn": "Played in 10 prefectures", + "UnlockType": 13 + }, + { + "Id": 222, + "TitleName": "全国行脚中", + "UnlockRequirementJp": "15都道府県でプレイ", + "UnlockRequirementEn": "Played in 15 prefectures", + "UnlockType": 13 + }, + { + "Id": 223, + "TitleName": "日本半周", + "UnlockRequirementJp": "20都道府県でプレイ", + "UnlockRequirementEn": "Played in 20 prefectures", + "UnlockType": 13 + }, + { + "Id": 224, + "TitleName": "日本一周", + "UnlockRequirementJp": "25都道府県でプレイ", + "UnlockRequirementEn": "Played in 25 prefectures", + "UnlockType": 13 + }, + { + "Id": 225, + "TitleName": "天下統一", + "UnlockRequirementJp": "30都道府県でプレイ", + "UnlockRequirementEn": "Played in 30 prefectures", + "UnlockType": 13 + }, + { + "Id": 226, + "TitleName": "行脚王", + "UnlockRequirementJp": "35都道府県でプレイ", + "UnlockRequirementEn": "Played in 35 prefectures", + "UnlockType": 13 + }, + { + "Id": 227, + "TitleName": "行脚神", + "UnlockRequirementJp": "40都道府県でプレイ", + "UnlockRequirementEn": "Played in 40 prefectures", + "UnlockType": 13 + }, + { + "Id": 228, + "TitleName": "全都道府県完全制覇", + "UnlockRequirementJp": "47都道府県でプレイ", + "UnlockRequirementEn": "Played in 47 prefectures", + "UnlockType": 13 + }, + { + "Id": 229, + "TitleName": "日本勢", + "UnlockRequirementJp": "日本でプレイ", + "UnlockRequirementEn": "Played in Japan", + "UnlockType": 13 + }, + { + "Id": 230, + "TitleName": "香港勢", + "UnlockRequirementJp": "香港でプレイ", + "UnlockRequirementEn": "Played in Hong Kong", + "UnlockType": 13 + }, + { + "Id": 231, + "TitleName": "韓国勢", + "UnlockRequirementJp": "韓国でプレイ", + "UnlockRequirementEn": "Played in South Korea", + "UnlockType": 13 + }, + { + "Id": 232, + "TitleName": "シンガポール勢", + "UnlockRequirementJp": "シンガポールでプレイ", + "UnlockRequirementEn": "Played in Singapore", + "UnlockType": 13 + }, + { + "Id": 233, + "TitleName": "台湾勢", + "UnlockRequirementJp": "台湾でプレイ", + "UnlockRequirementEn": "Played in Taiwan", + "UnlockType": 13 + }, + { + "Id": 234, + "TitleName": "タイ勢", + "UnlockRequirementJp": "タイでプレイ", + "UnlockRequirementEn": "Played in Thailand", + "UnlockType": 13 + }, + { + "Id": 235, + "TitleName": "マレーシア勢", + "UnlockRequirementJp": "マレーシアでプレイ", + "UnlockRequirementEn": "Played in Malaysia", + "UnlockType": 13 + }, + { + "Id": 236, + "TitleName": "インドネシア勢", + "UnlockRequirementJp": "インドネシアでプレイ", + "UnlockRequirementEn": "Played in Indonesia", + "UnlockType": 13 + }, + { + "Id": 237, + "TitleName": "メカクシ団", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 238, + "TitleName": "閃光の舞姫", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 239, + "TitleName": "ガンスト大好き!", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 240, + "TitleName": "ここがグルーヴの中心よ!", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 241, + "TitleName": "銃撃音楽隊", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 242, + "TitleName": "ノリノリンガーストラトス", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 243, + "TitleName": "意識高いガンスト勢", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 244, + "TitleName": "二丁拳銃の申し子", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 245, + "TitleName": "ガンスト勢", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 246, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 247, + "TitleName": "タイトーLOVE", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 248, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 249, + "TitleName": "中二病", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 250, + "TitleName": "漆黒の堕天使", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 251, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 252, + "TitleName": "すぽぉぉぉぉぉん", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 253, + "TitleName": "BB勢", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 254, + "TitleName": "刻の幻影", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 255, + "TitleName": "死神", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 256, + "TitleName": "蒼の魔道書", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 257, + "TitleName": "世界虚空情報統制機構", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 258, + "TitleName": "調査兵団", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 259, + "TitleName": "イェーガー", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 260, + "TitleName": "「『友達』になろう。」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 261, + "TitleName": "使用不可「行こうか、今日も戦争だ」", + "UnlockRequirementJp": "使用不可プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 262, + "TitleName": "悲劇の「女王」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 263, + "TitleName": "I LOVE カゲプロ", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 264, + "TitleName": "自然の敵", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 265, + "TitleName": "そんなんARIKA", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 266, + "TitleName": "Sampling Masters", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 267, + "TitleName": "GAME MUSIC TRIANGLER", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 268, + "TitleName": "GMT MASTER", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 269, + "TitleName": "ガンスト愛殿堂入り", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 270, + "TitleName": "音×銃スリンガー", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 271, + "TitleName": "ガンストの伝道師", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 272, + "TitleName": "天空音楽祭", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 273, + "TitleName": "ガンストから来ました", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 274, + "TitleName": "よく銃ばったでしょう", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 275, + "TitleName": "試し撃ち", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 276, + "TitleName": "NEO グルコサ民", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 277, + "TitleName": "はじめてのぐるこす", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 278, + "TitleName": "本職はガンスリンガー", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nコラボ称号", + "UnlockRequirementEn": "Collaboration title", + "UnlockType": 12 + }, + { + "Id": 279, + "TitleName": "究極進化!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 280, + "TitleName": "覚醒!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 281, + "TitleName": "パズドラマニア降臨!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 282, + "TitleName": "ピュアスマイル", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 283, + "TitleName": "キングメタルドラゴン", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 284, + "TitleName": "激レア!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 285, + "TitleName": "I LOVE パズドラ", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 286, + "TitleName": "メタドラ大発生!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 287, + "TitleName": "たまぁ~♪", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 288, + "TitleName": "「行こうか、今日も戦争だ」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 289, + "TitleName": "「本日、地球は終わります。」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 290, + "TitleName": "「クールに行こう。」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 291, + "TitleName": "ニジオタコミュショーヒキニート", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 292, + "TitleName": "団長", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 293, + "TitleName": "訓練兵", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 294, + "TitleName": "何の成果も!!得られませんでした!!", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 295, + "TitleName": "死に急ぎ野郎", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 296, + "TitleName": "兵士長", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 297, + "TitleName": "奇行種", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 298, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 299, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 300, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 301, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 302, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 303, + "TitleName": "グルーヴ二十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n110曲で達成", + "UnlockRequirementEn": "Got an S for 110 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 304, + "TitleName": "グルーヴ三十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n120曲で達成", + "UnlockRequirementEn": "Got an S for 120 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 305, + "TitleName": "グルーヴ四十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n130曲で達成", + "UnlockRequirementEn": "Got an S for 130 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 306, + "TitleName": "グルーヴ五十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n140曲で達成", + "UnlockRequirementEn": "Got an S for 140 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 307, + "TitleName": "グルーヴ六十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n150曲で達成", + "UnlockRequirementEn": "Got an S for 150 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 308, + "TitleName": "グルーヴ七十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n160曲で達成", + "UnlockRequirementEn": "Got an S for 160 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 309, + "TitleName": "グルーヴ八十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n170曲で達成", + "UnlockRequirementEn": "Got an S for 170 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 310, + "TitleName": "グルーヴ九十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n180曲で達成", + "UnlockRequirementEn": "Got an S for 180 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 311, + "TitleName": "グルーヴ百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n190曲で達成", + "UnlockRequirementEn": "Got an S for 190 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 312, + "TitleName": "グルーヴ二百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n200曲で達成", + "UnlockRequirementEn": "Got an S for 200 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 313, + "TitleName": "グルーヴ三百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n210曲で達成", + "UnlockRequirementEn": "Got an S for 210 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 314, + "TitleName": "グルーヴ四百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n220曲で達成", + "UnlockRequirementEn": "Got an S for 220 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 315, + "TitleName": "グルーヴ五百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n230曲で達成", + "UnlockRequirementEn": "Got an S for 230 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 316, + "TitleName": "グルーヴ六百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n240曲で達成", + "UnlockRequirementEn": "Got an S for 240 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 317, + "TitleName": "グルーヴ七百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n250曲で達成", + "UnlockRequirementEn": "Got an S for 250 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 318, + "TitleName": "グルーヴ八百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n260曲で達成", + "UnlockRequirementEn": "Got an S for 260 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 319, + "TitleName": "グルーヴ九百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n270曲で達成", + "UnlockRequirementEn": "Got an S for 270 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 320, + "TitleName": "グルーヴ千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n280曲で達成", + "UnlockRequirementEn": "Got an S for 280 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 321, + "TitleName": "グルーヴ二千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n290曲で達成", + "UnlockRequirementEn": "Got an S for 290 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 322, + "TitleName": "グルーヴ三千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n300曲で達成", + "UnlockRequirementEn": "Got an S for 300 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 323, + "TitleName": "S+級パン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n1曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 1 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 324, + "TitleName": "S+級サラダ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n10曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 10 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 325, + "TitleName": "S+級コーヒー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n20曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 20 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 326, + "TitleName": "S+級ラーメン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n30曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 30 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 327, + "TitleName": "S+級カレー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n40曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 40 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 328, + "TitleName": "S+級パスタ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n50曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 50 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 329, + "TitleName": "S+級ケーキ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n60曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 60 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 330, + "TitleName": "S+級そば", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n70曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 70 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 331, + "TitleName": "S+級プリン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n80曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 80 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 332, + "TitleName": "S+級オムライス", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n90曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 90 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 333, + "TitleName": "S+級うどん", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n100曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 100 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 334, + "TitleName": "S+級チョコレート", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n110曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 110 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 335, + "TitleName": "S+級からあげ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n120曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 120 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 336, + "TitleName": "S+級ピザ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n130曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 130 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 337, + "TitleName": "S+級焼肉", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n140曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 140 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 338, + "TitleName": "S+級クレープ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n150曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 150 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 339, + "TitleName": "S+級ハンバーグ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n160曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 160 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 340, + "TitleName": "S+級すき焼き", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n170曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 170 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 341, + "TitleName": "S+級パフェ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n180曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 180 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 342, + "TitleName": "S+級牛丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n190曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 190 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 343, + "TitleName": "S+級グラタン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n200曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 200 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 344, + "TitleName": "S+級おでん", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n210曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 210 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 345, + "TitleName": "S+級焼きそば", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n220曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 220 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 346, + "TitleName": "S+級キャンディー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n230曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 230 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 347, + "TitleName": "S+級チャーハン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n240曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 240 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 348, + "TitleName": "S+級天ぷら", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n250曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 250 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 349, + "TitleName": "S+級ハンバーガー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n260曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 260 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 350, + "TitleName": "S+級スープ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n270曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 270 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 351, + "TitleName": "S+級すし", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n280曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 280 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 352, + "TitleName": "S+級ステーキ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n290曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 290 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 353, + "TitleName": "S+級ごはん", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n300曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 300 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 354, + "TitleName": "真・十級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n1曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 1 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 355, + "TitleName": "真・九級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n10曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 10 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 356, + "TitleName": "真・八級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n20曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 20 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 357, + "TitleName": "真・七級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n30曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 30 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 358, + "TitleName": "真・六級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n40曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 40 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 359, + "TitleName": "真・五級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n50曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 50 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 360, + "TitleName": "真・四級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n60曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 60 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 361, + "TitleName": "真・三級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n70曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 70 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 362, + "TitleName": "真・二級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n80曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 80 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 363, + "TitleName": "真・一級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n90曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 90 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 364, + "TitleName": "真・初段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n100曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 100 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 365, + "TitleName": "真・二段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n110曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 110 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 366, + "TitleName": "真・三段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n120曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 120 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 367, + "TitleName": "真・四段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n130曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 130 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 368, + "TitleName": "真・五段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n140曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 140 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 369, + "TitleName": "真・六段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n150曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 150 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 370, + "TitleName": "真・七段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n160曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 160 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 371, + "TitleName": "真・八段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n170曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 170 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 372, + "TitleName": "真・九段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n180曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 180 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 373, + "TitleName": "真・十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n190曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 190 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 374, + "TitleName": "真・百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n200曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 200 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 375, + "TitleName": "真・千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n210曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 210 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 376, + "TitleName": "真・一万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n220曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 220 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 377, + "TitleName": "真・十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n230曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 230 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 378, + "TitleName": "真・百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n240曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 240 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 379, + "TitleName": "真・千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n250曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 250 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 380, + "TitleName": "真・一億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n260曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 260 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 381, + "TitleName": "真・十億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n270曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 270 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 382, + "TitleName": "真・百億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n280曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 280 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 383, + "TitleName": "真・千億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n290曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 290 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 384, + "TitleName": "真・一兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n300曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 300 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 385, + "TitleName": "アドリブ村長", + "UnlockRequirementJp": "アドリブ成功数の合計が700を超える", + "UnlockRequirementEn": "Performed 700 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 386, + "TitleName": "アドリブ町長", + "UnlockRequirementJp": "アドリブ成功数の合計が1000を超える", + "UnlockRequirementEn": "Performed 1,000 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 387, + "TitleName": "アドリブ市長", + "UnlockRequirementJp": "アドリブ成功数の合計が1500を超える", + "UnlockRequirementEn": "Performed 1,500 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 388, + "TitleName": "アドリブ知事", + "UnlockRequirementJp": "アドリブ成功数の合計が2000を超える", + "UnlockRequirementEn": "Performed 2,000 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 389, + "TitleName": "アドリブ大臣", + "UnlockRequirementJp": "アドリブ成功数の合計が2500を超える", + "UnlockRequirementEn": "Performed 2,500 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 390, + "TitleName": "アドリブ首相", + "UnlockRequirementJp": "アドリブ成功数の合計が3000を超える", + "UnlockRequirementEn": "Performed 3,000 or more\nad-libs successfully", + "UnlockType": 15 + }, + { + "Id": 391, + "TitleName": "ケルベロス", + "UnlockRequirementJp": "NO\u3000MISSを300ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 300 stages", + "UnlockType": 3 + }, + { + "Id": 392, + "TitleName": "ハ-ピー", + "UnlockRequirementJp": "NO\u3000MISSを350ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 350 stages", + "UnlockType": 3 + }, + { + "Id": 393, + "TitleName": "ユニコーン", + "UnlockRequirementJp": "NO\u3000MISSを400ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 400 stages", + "UnlockType": 3 + }, + { + "Id": 394, + "TitleName": "セイレーン", + "UnlockRequirementJp": "NO\u3000MISSを450ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 450 stages", + "UnlockType": 3 + }, + { + "Id": 395, + "TitleName": "ラミア", + "UnlockRequirementJp": "NO\u3000MISSを500ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 500 stages", + "UnlockType": 3 + }, + { + "Id": 396, + "TitleName": "サイクロプス", + "UnlockRequirementJp": "NO\u3000MISSを550ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 550 stages", + "UnlockType": 3 + }, + { + "Id": 397, + "TitleName": "ケンタウロス", + "UnlockRequirementJp": "NO\u3000MISSを600ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 600 stages", + "UnlockType": 3 + }, + { + "Id": 398, + "TitleName": "メデューサ", + "UnlockRequirementJp": "NO\u3000MISSを650ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 650 stages", + "UnlockType": 3 + }, + { + "Id": 399, + "TitleName": "ミノタウロス", + "UnlockRequirementJp": "NO\u3000MISSを700ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 700 stages", + "UnlockType": 3 + }, + { + "Id": 400, + "TitleName": "グリフォン", + "UnlockRequirementJp": "NO\u3000MISSを750ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 750 stages", + "UnlockType": 3 + }, + { + "Id": 401, + "TitleName": "ヒュドラ", + "UnlockRequirementJp": "NO\u3000MISSを800ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 800 stages", + "UnlockType": 3 + }, + { + "Id": 402, + "TitleName": "テュポーン", + "UnlockRequirementJp": "NO\u3000MISSを850ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 850 stages", + "UnlockType": 3 + }, + { + "Id": 403, + "TitleName": "オルトロス", + "UnlockRequirementJp": "NO\u3000MISSを900ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 900 stages", + "UnlockType": 3 + }, + { + "Id": 404, + "TitleName": "エキドナ", + "UnlockRequirementJp": "NO\u3000MISSを950ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 950 stages", + "UnlockType": 3 + }, + { + "Id": 405, + "TitleName": "スフィンクス", + "UnlockRequirementJp": "NO\u3000MISSを1000ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1000 stages", + "UnlockType": 3 + }, + { + "Id": 406, + "TitleName": "フェニックス", + "UnlockRequirementJp": "FULL\u3000CHAINを300ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 300 stages", + "UnlockType": 4 + }, + { + "Id": 407, + "TitleName": "ピクシー", + "UnlockRequirementJp": "FULL\u3000CHAINを350ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 350 stages", + "UnlockType": 4 + }, + { + "Id": 408, + "TitleName": "マーメイド", + "UnlockRequirementJp": "FULL\u3000CHAINを400ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 400 stages", + "UnlockType": 4 + }, + { + "Id": 409, + "TitleName": "ウンディーネ", + "UnlockRequirementJp": "FULL\u3000CHAINを450ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 450 stages", + "UnlockType": 4 + }, + { + "Id": 410, + "TitleName": "バジリスク", + "UnlockRequirementJp": "FULL\u3000CHAINを500ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 500 stages", + "UnlockType": 4 + }, + { + "Id": 411, + "TitleName": "クラーケン", + "UnlockRequirementJp": "FULL\u3000CHAINを550ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 550 stages", + "UnlockType": 4 + }, + { + "Id": 412, + "TitleName": "ヨルムンガンド", + "UnlockRequirementJp": "FULL\u3000CHAINを600ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 600 stages", + "UnlockType": 4 + }, + { + "Id": 413, + "TitleName": "フェンリル", + "UnlockRequirementJp": "FULL\u3000CHAINを650ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 650 stages", + "UnlockType": 4 + }, + { + "Id": 414, + "TitleName": "サラマンダー", + "UnlockRequirementJp": "FULL\u3000CHAINを700ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 700 stages", + "UnlockType": 4 + }, + { + "Id": 415, + "TitleName": "デュラハン", + "UnlockRequirementJp": "FULL\u3000CHAINを750ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 750 stages", + "UnlockType": 4 + }, + { + "Id": 416, + "TitleName": "イフリート", + "UnlockRequirementJp": "FULL\u3000CHAINを800ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 800 stages", + "UnlockType": 4 + }, + { + "Id": 417, + "TitleName": "リヴァイアサン", + "UnlockRequirementJp": "FULL\u3000CHAINを850ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 850 stages", + "UnlockType": 4 + }, + { + "Id": 418, + "TitleName": "ベヒモス", + "UnlockRequirementJp": "FULL\u3000CHAINを900ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 900 stages", + "UnlockType": 4 + }, + { + "Id": 419, + "TitleName": "バハムート", + "UnlockRequirementJp": "FULL\u3000CHAINを950ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 950 stages", + "UnlockType": 4 + }, + { + "Id": 420, + "TitleName": "ウロボロス", + "UnlockRequirementJp": "FULL\u3000CHAINを1000ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1000 stages", + "UnlockType": 4 + }, + { + "Id": 421, + "TitleName": "S級スクナヒコナ", + "UnlockRequirementJp": "S評価をSIMPLE125ステージで達成", + "UnlockRequirementEn": "Got an S for 125 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 422, + "TitleName": "S級タケミナカタ", + "UnlockRequirementJp": "S評価をSIMPLE150ステージで達成", + "UnlockRequirementEn": "Got an S for 150 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 423, + "TitleName": "S級タケミカヅチ", + "UnlockRequirementJp": "S評価をSIMPLE175ステージで達成", + "UnlockRequirementEn": "Got an S for 175 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 424, + "TitleName": "S級カグツチ", + "UnlockRequirementJp": "S評価をSIMPLE200ステージで達成", + "UnlockRequirementEn": "Got an S for 200 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 425, + "TitleName": "S級ワタツミ", + "UnlockRequirementJp": "S評価をSIMPLE225ステージで達成", + "UnlockRequirementEn": "Got an S for 225 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 426, + "TitleName": "S級スサノヲ", + "UnlockRequirementJp": "S評価をSIMPLE250ステージで達成", + "UnlockRequirementEn": "Got an S for 250 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 427, + "TitleName": "S級ツクヨミ", + "UnlockRequirementJp": "S評価をSIMPLE275ステージで達成", + "UnlockRequirementEn": "Got an S for 275 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 428, + "TitleName": "S級アマテラス", + "UnlockRequirementJp": "S評価をSIMPLE300ステージで達成", + "UnlockRequirementEn": "Got an S for 300 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 429, + "TitleName": "S級イズン", + "UnlockRequirementJp": "S評価をNORMAL125ステージで達成", + "UnlockRequirementEn": "Got an S for 125 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 430, + "TitleName": "S級フレイ", + "UnlockRequirementJp": "S評価をNORMAL150ステージで達成", + "UnlockRequirementEn": "Got an S for 150 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 431, + "TitleName": "S級ワルキューレ", + "UnlockRequirementJp": "S評価をNORMAL175ステージで達成", + "UnlockRequirementEn": "Got an S for 175 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 432, + "TitleName": "S級トール", + "UnlockRequirementJp": "S評価をNORMAL200ステージで達成", + "UnlockRequirementEn": "Got an S for 200 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 433, + "TitleName": "S級ヘイムダル", + "UnlockRequirementJp": "S評価をNORMAL225ステージで達成", + "UnlockRequirementEn": "Got an S for 225 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 434, + "TitleName": "S級フレイヤ", + "UnlockRequirementJp": "S評価をNORMAL250ステージで達成", + "UnlockRequirementEn": "Got an S for 250 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 435, + "TitleName": "S級ロキ", + "UnlockRequirementJp": "S評価をNORMAL275ステージで達成", + "UnlockRequirementEn": "Got an S for 275 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 436, + "TitleName": "S級オーディン", + "UnlockRequirementJp": "S評価をNORMAL300ステージで達成", + "UnlockRequirementEn": "Got an S for 300 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 437, + "TitleName": "S級トート", + "UnlockRequirementJp": "S評価をHARD125ステージで達成", + "UnlockRequirementEn": "Got an S for 125 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 438, + "TitleName": "S級イシス", + "UnlockRequirementJp": "S評価をHARD150ステージで達成", + "UnlockRequirementEn": "Got an S for 150 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 439, + "TitleName": "S級セト", + "UnlockRequirementJp": "S評価をHARD175ステージで達成", + "UnlockRequirementEn": "Got an S for 175 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 440, + "TitleName": "S級ホルス", + "UnlockRequirementJp": "S評価をHARD200ステージで達成", + "UnlockRequirementEn": "Got an S for 200 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 441, + "TitleName": "S級バステト", + "UnlockRequirementJp": "S評価をHARD225ステージで達成", + "UnlockRequirementEn": "Got an S for 225 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 442, + "TitleName": "S級アヌビス", + "UnlockRequirementJp": "S評価をHARD250ステージで達成", + "UnlockRequirementEn": "Got an S for 250 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 443, + "TitleName": "S級オシリス", + "UnlockRequirementJp": "S評価をHARD275ステージで達成", + "UnlockRequirementEn": "Got an S for 275 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 444, + "TitleName": "S級ラー", + "UnlockRequirementJp": "S評価をHARD300ステージで達成", + "UnlockRequirementEn": "Got an S for 300 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 445, + "TitleName": "EX級序の口", + "UnlockRequirementJp": "S評価をEXTRA1ステージで達成", + "UnlockRequirementEn": "Got an S for 1 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 446, + "TitleName": "EX級三段目", + "UnlockRequirementJp": "S評価をEXTRA5ステージで達成", + "UnlockRequirementEn": "Got an S for 5 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 447, + "TitleName": "EX級幕下", + "UnlockRequirementJp": "S評価をEXTRA10ステージで達成", + "UnlockRequirementEn": "Got an S for 10 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 448, + "TitleName": "EX級十両", + "UnlockRequirementJp": "S評価をEXTRA20ステージで達成", + "UnlockRequirementEn": "Got an S for 20 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 449, + "TitleName": "EX級前頭", + "UnlockRequirementJp": "S評価をEXTRA30ステージで達成", + "UnlockRequirementEn": "Got an S for 30 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 450, + "TitleName": "EX級小結", + "UnlockRequirementJp": "S評価をEXTRA50ステージで達成", + "UnlockRequirementEn": "Got an S for 50 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 451, + "TitleName": "EX級関脇", + "UnlockRequirementJp": "S評価をEXTRA70ステージで達成", + "UnlockRequirementEn": "Got an S for 70 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 452, + "TitleName": "EX級大関", + "UnlockRequirementJp": "S評価をEXTRA90ステージで達成", + "UnlockRequirementEn": "Got an S for 90 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 453, + "TitleName": "EX級横綱", + "UnlockRequirementJp": "S評価をEXTRA100ステージで達成", + "UnlockRequirementEn": "Got an S for 100 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 454, + "TitleName": "EX級クロートー", + "UnlockRequirementJp": "S評価をEXTRA125ステージで達成", + "UnlockRequirementEn": "Got an S for 125 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 455, + "TitleName": "EX級ラケシス", + "UnlockRequirementJp": "S評価をEXTRA150ステージで達成", + "UnlockRequirementEn": "Got an S for 150 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 456, + "TitleName": "EX級アトロポス", + "UnlockRequirementJp": "S評価をEXTRA175ステージで達成", + "UnlockRequirementEn": "Got an S for 175 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 457, + "TitleName": "EX級アレス", + "UnlockRequirementJp": "S評価をEXTRA200ステージで達成", + "UnlockRequirementEn": "Got an S for 200 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 458, + "TitleName": "EX級アテナ", + "UnlockRequirementJp": "S評価をEXTRA225ステージで達成", + "UnlockRequirementEn": "Got an S for 225 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 459, + "TitleName": "EX級ヘラ", + "UnlockRequirementJp": "S評価をEXTRA250ステージで達成", + "UnlockRequirementEn": "Got an S for 250 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 460, + "TitleName": "EX級ポセイドン", + "UnlockRequirementJp": "S評価をEXTRA275ステージで達成", + "UnlockRequirementEn": "Got an S for 275 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 461, + "TitleName": "EX級ゼウス", + "UnlockRequirementJp": "S評価をEXTRA300ステージで達成", + "UnlockRequirementEn": "Got an S for 300 stages in EXTRA mode", + "UnlockType": 8 + }, + { + "Id": 462, + "TitleName": "鏡の神", + "UnlockRequirementJp": "「MIRROR」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using MIRROR", + "UnlockType": 17 + }, + { + "Id": 463, + "TitleName": "道なき道の神", + "UnlockRequirementJp": "「NO\u3000WAY」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using NO WAY", + "UnlockType": 17 + }, + { + "Id": 464, + "TitleName": "裏天帝", + "UnlockRequirementJp": "「REVERSE」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using REVERSE", + "UnlockType": 17 + }, + { + "Id": 465, + "TitleName": "隠れた支配者", + "UnlockRequirementJp": "「HIDDEN」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using HIDDEN", + "UnlockType": 17 + }, + { + "Id": 466, + "TitleName": "神速の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using SUDDEN", + "UnlockType": 17 + }, + { + "Id": 467, + "TitleName": "リズム感の神", + "UnlockRequirementJp": "「JUST」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using JUST", + "UnlockType": 17 + }, + { + "Id": 468, + "TitleName": "ステルスゴッド", + "UnlockRequirementJp": "「STEALTH」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using STEALTH", + "UnlockType": 17 + }, + { + "Id": 469, + "TitleName": "何も見えなっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using NOTHING", + "UnlockType": 17 + }, + { + "Id": 470, + "TitleName": "慣れてきたなっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using NOTHING", + "UnlockType": 17 + }, + { + "Id": 471, + "TitleName": "あり得なっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using NOTHING", + "UnlockType": 17 + }, + { + "Id": 472, + "TitleName": "全然問題なっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using NOTHING", + "UnlockType": 17 + }, + { + "Id": 473, + "TitleName": "完全に極めたなっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using NOTHING", + "UnlockType": 17 + }, + { + "Id": 474, + "TitleName": "不可能へ挑戦する者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って1回クリア", + "UnlockRequirementEn": "Cleared 1 stages using IMPOSSIBLE", + "UnlockType": 17 + }, + { + "Id": 475, + "TitleName": "不可能へ挑戦し続ける者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って10回クリア", + "UnlockRequirementEn": "Cleared 10 stages using IMPOSSIBLE", + "UnlockType": 17 + }, + { + "Id": 476, + "TitleName": "不可能を突破する者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って30回クリア", + "UnlockRequirementEn": "Cleared 30 stages using IMPOSSIBLE", + "UnlockType": 17 + }, + { + "Id": 477, + "TitleName": "不可能を可能にする者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って50回クリア", + "UnlockRequirementEn": "Cleared 50 stages using IMPOSSIBLE", + "UnlockType": 17 + }, + { + "Id": 478, + "TitleName": "不可能を無にする者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って100回クリア", + "UnlockRequirementEn": "Cleared 100 stages using IMPOSSIBLE", + "UnlockType": 17 + }, + { + "Id": 479, + "TitleName": "悪魔の妹", + "UnlockRequirementJp": "『東方Project』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 480, + "TitleName": "永遠に紅い幼き月", + "UnlockRequirementJp": "『東方Project』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 481, + "TitleName": "時間を操るメイド", + "UnlockRequirementJp": "『東方Project』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 482, + "TitleName": "動かない大図書館", + "UnlockRequirementJp": "『東方Project』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 483, + "TitleName": "華人小娘", + "UnlockRequirementJp": "『東方Project』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 484, + "TitleName": "あたいったら最強ね", + "UnlockRequirementJp": "『東方Project』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 485, + "TitleName": "そーなのかー", + "UnlockRequirementJp": "『東方Project』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 486, + "TitleName": "永遠の巫女", + "UnlockRequirementJp": "『東方Project』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 487, + "TitleName": "[ 9 ]", + "UnlockRequirementJp": "『東方Project』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 488, + "TitleName": "境界の妖怪", + "UnlockRequirementJp": "『東方Project 2』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 489, + "TitleName": "策士の九尾", + "UnlockRequirementJp": "『東方Project 2』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 490, + "TitleName": "幽冥楼閣の亡霊少女", + "UnlockRequirementJp": "『東方Project 2』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 491, + "TitleName": "みょん", + "UnlockRequirementJp": "『東方Project 2』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 492, + "TitleName": "騒霊三姉妹", + "UnlockRequirementJp": "『東方Project 2』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 493, + "TitleName": "七色の人形使い", + "UnlockRequirementJp": "『東方Project 2』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 494, + "TitleName": "凶兆の黒猫", + "UnlockRequirementJp": "『東方Project 2』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 495, + "TitleName": "普通の魔法使い", + "UnlockRequirementJp": "『東方Project 2』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 496, + "TitleName": "冬の忘れ物", + "UnlockRequirementJp": "『東方Project 2』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 497, + "TitleName": "伝説の勇者", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 498, + "TitleName": "勇者様御一行", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 499, + "TitleName": "魔界の召喚士", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 500, + "TitleName": "天空の竜騎士", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 501, + "TitleName": "疾風のアーチャー", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 502, + "TitleName": "流浪の遊び人", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 503, + "TitleName": "みんなのアイドル", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 504, + "TitleName": "かけだし勇者(Lv1)", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 505, + "TitleName": "村人A", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 506, + "TitleName": "宇宙最速", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 507, + "TitleName": "世界最速", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 508, + "TitleName": "紫電一閃", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 509, + "TitleName": "電光石火", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 510, + "TitleName": "ハヤブサ", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 511, + "TitleName": "チーター", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 512, + "TitleName": "ウサギ", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 513, + "TitleName": "ヘリで来た。", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 514, + "TitleName": "カメ", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 515, + "TitleName": "銀河を統べる英雄", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 516, + "TitleName": "天馬と奏でる音楽家", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 517, + "TitleName": "星座のメロディー", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 518, + "TitleName": "スターミュージシャン", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 519, + "TitleName": "クエーサー", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 520, + "TitleName": "お星さまにお願い☆", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 521, + "TitleName": "きらきら星", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 522, + "TitleName": "超新星", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 523, + "TitleName": "ユニバース", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 524, + "TitleName": "紅蓮の愚流超神皇", + "UnlockRequirementJp": "『LoVⅢ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 525, + "TitleName": "愚流超帝", + "UnlockRequirementJp": "『LoVⅢ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 526, + "TitleName": "愚流王", + "UnlockRequirementJp": "『LoVⅢ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 527, + "TitleName": "惹響の舞踏士", + "UnlockRequirementJp": "『LoVⅢ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 528, + "TitleName": "拍音の戦士", + "UnlockRequirementJp": "『LoVⅢ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 529, + "TitleName": "グルコ種", + "UnlockRequirementJp": "『LoVⅢ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 530, + "TitleName": "音魄の使い手", + "UnlockRequirementJp": "『LoVⅢ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 531, + "TitleName": "ミリアの下僕", + "UnlockRequirementJp": "『LoVⅢ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 532, + "TitleName": "紅蓮の子ら", + "UnlockRequirementJp": "『LoVⅢ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 533, + "TitleName": "我ら\u3000LoV勢", + "UnlockRequirementJp": "『LoVⅢ』\nコラボ称号", + "UnlockRequirementEn": "Collaboration title", + "UnlockType": 12 + }, + { + "Id": 534, + "TitleName": "初代スコアタ征夷大将軍", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 535, + "TitleName": "初代スコアタ大名", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 536, + "TitleName": "初代スコアタ家老", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 537, + "TitleName": "初代スコアタ奉行", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 538, + "TitleName": "初代スコアタ代官", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 539, + "TitleName": "初代スコアタ悪代官", + "UnlockRequirementJp": "『第1回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 540, + "TitleName": "初代スコアタ足軽", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 541, + "TitleName": "初代スコアタ侍大将", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 542, + "TitleName": "初代スコアタ侍", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 543, + "TitleName": "二代目スコアタ征夷大将軍", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 544, + "TitleName": "二代目スコアタ大名", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 545, + "TitleName": "二代目スコアタ家老", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 546, + "TitleName": "二代目スコアタ奉行", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 547, + "TitleName": "二代目スコアタ代官", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 548, + "TitleName": "二代目スコアタ悪代官", + "UnlockRequirementJp": "『第2回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 549, + "TitleName": "二代目スコアタ足軽", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 550, + "TitleName": "二代目スコアタ侍大将", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 551, + "TitleName": "二代目スコアタ侍", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 552, + "TitleName": "三代目スコアタ征夷大将軍", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 553, + "TitleName": "三代目スコアタ大名", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 554, + "TitleName": "三代目スコアタ家老", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 555, + "TitleName": "三代目スコアタ奉行", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 556, + "TitleName": "三代目スコアタ代官", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 557, + "TitleName": "三代目スコアタ悪代官", + "UnlockRequirementJp": "『第3回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 558, + "TitleName": "三代目スコアタ足軽", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 559, + "TitleName": "三代目スコアタ侍大将", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 560, + "TitleName": "三代目スコアタ侍", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 561, + "TitleName": "ネオサイタマの死神", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 562, + "TitleName": "ソウカイ・シックスゲイツ", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 563, + "TitleName": "オムラ重工社員", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 564, + "TitleName": "ワザマエ!", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 565, + "TitleName": "ゴウランガ!", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 566, + "TitleName": "アイエエエエエ!", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 567, + "TitleName": "ドーモ、グルーヴァー=サン…", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 568, + "TitleName": "忍\u3000殺", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 569, + "TitleName": "ニンジャヘッズ", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 570, + "TitleName": "店内F CLASS", + "UnlockRequirementJp": "店内対戦で1WIN", + "UnlockRequirementEn": "Get wins 1 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 571, + "TitleName": "店内E CLASS", + "UnlockRequirementJp": "店内対戦で10WIN", + "UnlockRequirementEn": "Get wins 10 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 572, + "TitleName": "店内D CLASS", + "UnlockRequirementJp": "店内対戦で25WIN", + "UnlockRequirementEn": "Get wins 25 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 573, + "TitleName": "店内C CLASS", + "UnlockRequirementJp": "店内対戦で50WIN", + "UnlockRequirementEn": "Get wins 50 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 574, + "TitleName": "店内B CLASS", + "UnlockRequirementJp": "店内対戦で75WIN", + "UnlockRequirementEn": "Get wins 75 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 575, + "TitleName": "店内A CLASS", + "UnlockRequirementJp": "店内対戦で100WIN", + "UnlockRequirementEn": "Get wins 100 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 576, + "TitleName": "店内AA CLASS", + "UnlockRequirementJp": "店内対戦で200WIN", + "UnlockRequirementEn": "Get wins 200 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 577, + "TitleName": "店内AAA CLASS", + "UnlockRequirementJp": "店内対戦で300WIN", + "UnlockRequirementEn": "Get wins 300 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 578, + "TitleName": "店内S CLASS", + "UnlockRequirementJp": "店内対戦で400WIN", + "UnlockRequirementEn": "Get wins 400 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 579, + "TitleName": "店内SS CLASS", + "UnlockRequirementJp": "店内対戦で500WIN", + "UnlockRequirementEn": "Get wins 500 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 580, + "TitleName": "店内SSS CLASS", + "UnlockRequirementJp": "店内対戦で1,000WIN", + "UnlockRequirementEn": "Get wins 1000 or higher\nin multiplayer match", + "UnlockType": 19 + }, + { + "Id": 581, + "TitleName": "I love \u0022Play merrily\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 582, + "TitleName": "陽気先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 583, + "TitleName": "陽気大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 584, + "TitleName": "陽気神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 585, + "TitleName": "I love \u0022Breach of faith\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 586, + "TitleName": "裏切り先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 587, + "TitleName": "裏切り大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 588, + "TitleName": "裏切り神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 589, + "TitleName": "I love \u0022檄 (GEKI)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 590, + "TitleName": "檄先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 591, + "TitleName": "檄大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 592, + "TitleName": "檄神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 593, + "TitleName": "I love \u0022Spring to mind\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 594, + "TitleName": "Spring先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 595, + "TitleName": "Spring大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 596, + "TitleName": "Spring神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 597, + "TitleName": "I love \u0022Good-bye my earth\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 598, + "TitleName": "Good-bye先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 599, + "TitleName": "Good-bye大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 600, + "TitleName": "Good-bye神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 601, + "TitleName": "I love \u0022S.I.I.G. Medley\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 602, + "TitleName": "インフィニティ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 603, + "TitleName": "インフィニティ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 604, + "TitleName": "インフィニティ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 605, + "TitleName": "I love \u0022Hello 31337\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 606, + "TitleName": "31337先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 607, + "TitleName": "31337大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 608, + "TitleName": "31337神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 609, + "TitleName": "I love \u0022Protocol Signal Generation\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 610, + "TitleName": "Generation Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 611, + "TitleName": "Generation King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 612, + "TitleName": "Generation God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 613, + "TitleName": "I love \u0022Just no friend\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 614, + "TitleName": "No friend master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 615, + "TitleName": "No friend king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 616, + "TitleName": "No friend god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 617, + "TitleName": "I love \u0022Thrash Beat\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 618, + "TitleName": "Thrash Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 619, + "TitleName": "Thrash King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 620, + "TitleName": "Thrash God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 621, + "TitleName": "I love \u0022Fess up!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 622, + "TitleName": "Fess up先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 623, + "TitleName": "Fess up大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 624, + "TitleName": "Fess up神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 625, + "TitleName": "I love \u0022VISIONNERZ~幻視人~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 626, + "TitleName": "幻視先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 627, + "TitleName": "幻視大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 628, + "TitleName": "幻視神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 629, + "TitleName": "I love \u0022Jingle Bells -Trance Mix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 630, + "TitleName": "Jingle Bells Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 631, + "TitleName": "Jingle Bells King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 632, + "TitleName": "Jingle Bells God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 633, + "TitleName": "I love \u0022カンナンシンク\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 634, + "TitleName": "カンナンシンクマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 635, + "TitleName": "カンナンシンクキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 636, + "TitleName": "カンナンシンクゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 637, + "TitleName": "I love \u0022Shadow\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 638, + "TitleName": "Shadow Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 639, + "TitleName": "Shadow King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 640, + "TitleName": "Shadow God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 641, + "TitleName": "I love \u0022Planet connection\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 642, + "TitleName": "Planet master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 643, + "TitleName": "Planet king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 644, + "TitleName": "Planet god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 645, + "TitleName": "I love \u0022Invader Disco\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 646, + "TitleName": "Invader Disco先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 647, + "TitleName": "Invader Disco大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 648, + "TitleName": "Invader Disco神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 649, + "TitleName": "I love \u0022SPACE INVADERS 2003\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 650, + "TitleName": "2003 MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 651, + "TitleName": "2003 KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 652, + "TitleName": "2003 GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 653, + "TitleName": "I love \u0022ピ・ピ・ピ・ミュージック\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 654, + "TitleName": "ピ・ピ・ピ・先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 655, + "TitleName": "ピ・ピ・ピ・大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 656, + "TitleName": "ピ・ピ・ピ・神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 657, + "TitleName": "I love \u0022ミュージック・リボルバー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 658, + "TitleName": "ミュージック・リボルバー・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 659, + "TitleName": "ミュージック・リボルバー・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 660, + "TitleName": "ミュージック・リボルバー・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 661, + "TitleName": "I love \u0022Dreamer\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 662, + "TitleName": "夢想先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 663, + "TitleName": "夢想大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 664, + "TitleName": "夢想神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 665, + "TitleName": "I love \u0022Shooting Star\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 666, + "TitleName": "流星先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 667, + "TitleName": "流星大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 668, + "TitleName": "流星神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 669, + "TitleName": "I love \u0022Crowded space\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 670, + "TitleName": "Crowded master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 671, + "TitleName": "Crowded king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 672, + "TitleName": "Crowded god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 673, + "TitleName": "I love \u0022Extreme MGG★★★\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 674, + "TitleName": "★★★先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 675, + "TitleName": "★★★大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 676, + "TitleName": "★★★神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 677, + "TitleName": "I love \u0022DADDY MULK\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 678, + "TitleName": "DADDY MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 679, + "TitleName": "DADDY KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 680, + "TitleName": "DADDY GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 681, + "TitleName": "I love \u0022Quartet Theme\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 682, + "TitleName": "Quartet Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 683, + "TitleName": "Quartet King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 684, + "TitleName": "Quartet God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 685, + "TitleName": "I love \u0022GO! SPIRAL GO!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 686, + "TitleName": "SPIRAL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 687, + "TitleName": "SPIRAL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 688, + "TitleName": "SPIRAL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 689, + "TitleName": "I love \u0022PIXEL STAR\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 690, + "TitleName": "PIXEL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 691, + "TitleName": "PIXEL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 692, + "TitleName": "PIXEL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 693, + "TitleName": "I love \u0022Freestyle Beats\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 694, + "TitleName": "Freestyle Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 695, + "TitleName": "Freestyle King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 696, + "TitleName": "Freestyle God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 697, + "TitleName": "I love \u0022グルーヴ・リボルバー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 698, + "TitleName": "グルーヴ・リボルバー・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 699, + "TitleName": "グルーヴ・リボルバー・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 700, + "TitleName": "グルーヴ・リボルバー・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 701, + "TitleName": "I love \u0022Wacky dance ethnic\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 702, + "TitleName": "Wacky master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 703, + "TitleName": "Wacky king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 704, + "TitleName": "Wacky god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 705, + "TitleName": "I love \u0022KIKIKAIKAI\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 706, + "TitleName": "奇々怪界先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 707, + "TitleName": "奇々怪界大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 708, + "TitleName": "奇々怪界神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 709, + "TitleName": "I love \u0022OVER THE NIGHT\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 710, + "TitleName": "OVER THE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 711, + "TitleName": "OVER THE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 712, + "TitleName": "OVER THE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 713, + "TitleName": "I love \u0022Analysis Division\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 714, + "TitleName": "Analysis Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 715, + "TitleName": "Analysis King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 716, + "TitleName": "Analysis God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 717, + "TitleName": "I love \u0022Got more raves?\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 718, + "TitleName": "Groove master?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 719, + "TitleName": "King of groove master?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 720, + "TitleName": "God more raves?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 721, + "TitleName": "I love \u0022Got a pain cover?\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 722, + "TitleName": "Groove captain?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 723, + "TitleName": "King of groove captain?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 724, + "TitleName": "God a pain cover?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 725, + "TitleName": "I love \u0022Jupiter II Europa\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 726, + "TitleName": "Europa Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 727, + "TitleName": "Europa King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 728, + "TitleName": "Europa God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 729, + "TitleName": "I love \u0022Lost Colors\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 730, + "TitleName": "無彩色先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 731, + "TitleName": "無彩色大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 732, + "TitleName": "無彩色神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 733, + "TitleName": "I love \u0022Five to Seven\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 734, + "TitleName": "527先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 735, + "TitleName": "527大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 736, + "TitleName": "527神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 737, + "TitleName": "I love \u0022COZMIC OPERATION\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 738, + "TitleName": "COZMIC MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 739, + "TitleName": "COZMIC KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 740, + "TitleName": "COZMIC GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 741, + "TitleName": "I love \u0022World Collapse\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 742, + "TitleName": "Collapse Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 743, + "TitleName": "Collapse King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 744, + "TitleName": "Collapse God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 745, + "TitleName": "I love \u0022Captain NEO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 746, + "TitleName": "Master NEO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 747, + "TitleName": "King NEO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 748, + "TitleName": "God NEO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 749, + "TitleName": "I love \u0022ポリリズム\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 750, + "TitleName": "ポリリズムマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 751, + "TitleName": "ポリリズムキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 752, + "TitleName": "ポリリズムゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 753, + "TitleName": "I love \u0022JUMPER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 754, + "TitleName": "MASTER JUMPER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 755, + "TitleName": "KING JUMPER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 756, + "TitleName": "GOD JUMPER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 757, + "TitleName": "I love \u0022Pray\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 758, + "TitleName": "Pray Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 759, + "TitleName": "Pray King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 760, + "TitleName": "Pray God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 761, + "TitleName": "I love \u0022Kick It Out\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 762, + "TitleName": "Kick It Out Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 763, + "TitleName": "Kick It Out King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 764, + "TitleName": "Kick It Out God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 765, + "TitleName": "I love \u0022ノルニル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 766, + "TitleName": "ノルニル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 767, + "TitleName": "ノルニル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 768, + "TitleName": "ノルニル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 769, + "TitleName": "I love \u0022アルクアラウンド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 770, + "TitleName": "アルクアラウンドマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 771, + "TitleName": "アルクアラウンドキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 772, + "TitleName": "アルクアラウンドゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 773, + "TitleName": "I love \u0022V.I.P\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 774, + "TitleName": "V.I.P先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 775, + "TitleName": "V.I.P大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 776, + "TitleName": "V.I.P神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 777, + "TitleName": "I love \u0022Bless You\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 778, + "TitleName": "Bless You Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 779, + "TitleName": "Bless You King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 780, + "TitleName": "Bless You God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 781, + "TitleName": "I love \u0022つけまつける\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 782, + "TitleName": "つけま先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 783, + "TitleName": "つけま大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 784, + "TitleName": "つけま神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 785, + "TitleName": "I love \u0022天体観測\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 786, + "TitleName": "天体観測先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 787, + "TitleName": "天体観測大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 788, + "TitleName": "天体観測神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 789, + "TitleName": "I love \u0022My Babe Bee\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 790, + "TitleName": "Bee Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 791, + "TitleName": "Bee King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 792, + "TitleName": "Bee God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 793, + "TitleName": "I love \u0022夢現\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 794, + "TitleName": "夢現先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 795, + "TitleName": "夢現大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 796, + "TitleName": "夢現神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 797, + "TitleName": "I love \u0022Crystal tears\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 798, + "TitleName": "Crystal master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 799, + "TitleName": "Crystal king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 800, + "TitleName": "Crystal god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 801, + "TitleName": "I love \u0022裏表ラバーズ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 802, + "TitleName": "裏表先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 803, + "TitleName": "裏表大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 804, + "TitleName": "裏表神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 805, + "TitleName": "I love \u0022ローリンガール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 806, + "TitleName": "ローリンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 807, + "TitleName": "ローリンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 808, + "TitleName": "ローリンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 809, + "TitleName": "I love \u0022僕のサイノウ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 810, + "TitleName": "僕のセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 811, + "TitleName": "僕のオウサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 812, + "TitleName": "僕のカミサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 813, + "TitleName": "I love \u0022アンハッピーリフレイン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 814, + "TitleName": "アンハッピーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 815, + "TitleName": "アンハッピーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 816, + "TitleName": "アンハッピーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 817, + "TitleName": "I love \u0022ロミオとシンデレラ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 818, + "TitleName": "シンデレラ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 819, + "TitleName": "シンデレラ クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 820, + "TitleName": "シンデレラ ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 821, + "TitleName": "I love \u0022magnet\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 822, + "TitleName": "magnet master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 823, + "TitleName": "magnet king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 824, + "TitleName": "magnet god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 825, + "TitleName": "I love \u0022千本桜\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 826, + "TitleName": "千本桜先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 827, + "TitleName": "千本桜大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 828, + "TitleName": "千本桜神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 829, + "TitleName": "I love \u0022月光\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 830, + "TitleName": "月光先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 831, + "TitleName": "月光大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 832, + "TitleName": "月光神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 833, + "TitleName": "I love \u0022カノン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 834, + "TitleName": "カノン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 835, + "TitleName": "カノン キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 836, + "TitleName": "カノン ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 837, + "TitleName": "I love \u0022STORY\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 838, + "TitleName": "STORY MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 839, + "TitleName": "STORY KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 840, + "TitleName": "STORY GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 841, + "TitleName": "I love \u0022SPARKLING FUTURE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 842, + "TitleName": "SPARKLING MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 843, + "TitleName": "SPARKLING KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 844, + "TitleName": "SPARKLING GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 845, + "TitleName": "I love \u0022カゲロウデイズ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 846, + "TitleName": "カゲロウデイズ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 847, + "TitleName": "カゲロウデイズ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 848, + "TitleName": "カゲロウデイズ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 849, + "TitleName": "I love \u0022チルドレンレコード\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 850, + "TitleName": "チルドレン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 851, + "TitleName": "チルドレン キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 852, + "TitleName": "チルドレン ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 853, + "TitleName": "I love \u0022如月アテンション\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 854, + "TitleName": "アテンション マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 855, + "TitleName": "アテンション キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 856, + "TitleName": "アテンション ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 857, + "TitleName": "I love \u0022ワールズエンド・ダンスホール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 858, + "TitleName": "ダンスホール・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 859, + "TitleName": "ダンスホール・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 860, + "TitleName": "ダンスホール・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 861, + "TitleName": "I love \u0022夜咄ディセイブ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 862, + "TitleName": "ディセイブ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 863, + "TitleName": "ディセイブ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 864, + "TitleName": "ディセイブ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 865, + "TitleName": "I love \u0022magician\u0027s operation\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 866, + "TitleName": "magician master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 867, + "TitleName": "magician king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 868, + "TitleName": "magician god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 869, + "TitleName": "I love \u0022マトリョシカ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 870, + "TitleName": "マトリョシカ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 871, + "TitleName": "マトリョシカ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 872, + "TitleName": "マトリョシカ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 873, + "TitleName": "I love \u0022Bad Apple!! feat. nomico\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 874, + "TitleName": "ろくでなし先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 875, + "TitleName": "ろくでなし大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 876, + "TitleName": "ろくでなし神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 877, + "TitleName": "I love \u0022Starlight Vision\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 878, + "TitleName": "四季の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 879, + "TitleName": "四季の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 880, + "TitleName": "四季の最高裁判長", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 881, + "TitleName": "I love \u0022Colors\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 882, + "TitleName": "半人半霊の庭師", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 883, + "TitleName": "半人半霊の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 884, + "TitleName": "半人半霊の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 885, + "TitleName": "I love \u0022Stardust Vox\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 886, + "TitleName": "Stardust Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 887, + "TitleName": "Stardust King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 888, + "TitleName": "Stardust God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 889, + "TitleName": "I love \u0022No Way Out\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 890, + "TitleName": "No Way Out Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 891, + "TitleName": "No Way Out King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 892, + "TitleName": "No Way Out God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 893, + "TitleName": "I love \u0022Sleep\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 894, + "TitleName": "眠れる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 895, + "TitleName": "眠れる王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 896, + "TitleName": "眠れる神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 897, + "TitleName": "I love \u0022only my railgun\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 898, + "TitleName": "railgun master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 899, + "TitleName": "railgun king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 900, + "TitleName": "railgun god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 901, + "TitleName": "I love \u0022Punk Silent Night\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 902, + "TitleName": "Punk Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 903, + "TitleName": "Punk King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 904, + "TitleName": "Punk God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 905, + "TitleName": "I love \u0022Sakura Remix\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 906, + "TitleName": "Sakura Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 907, + "TitleName": "Sakura King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 908, + "TitleName": "Sakura God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 909, + "TitleName": "I love \u0022Music Plot Type Three\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 910, + "TitleName": "Plot Type 3 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 911, + "TitleName": "Plot Type 3 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 912, + "TitleName": "Plot Type 3 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 913, + "TitleName": "I love \u0022Flower of Gangster\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 914, + "TitleName": "Master of Gangster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 915, + "TitleName": "King of Gangster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 916, + "TitleName": "God of Gangster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 917, + "TitleName": "I love \u0022ゴーゴー幽霊船\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 918, + "TitleName": "ゴーゴー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 919, + "TitleName": "ゴーゴー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 920, + "TitleName": "ゴーゴー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 921, + "TitleName": "I love \u0022結ンデ開イテ羅刹ト骸\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 922, + "TitleName": "羅刹先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 923, + "TitleName": "羅刹大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 924, + "TitleName": "羅刹神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 925, + "TitleName": "I love \u0022Mrs.Pumpkinの滑稽な夢\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 926, + "TitleName": "パンプキン先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 927, + "TitleName": "パンプキン大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 928, + "TitleName": "パンプキン神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 929, + "TitleName": "I love \u0022パンダヒーロー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 930, + "TitleName": "パンダ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 931, + "TitleName": "パンダ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 932, + "TitleName": "パンダ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 933, + "TitleName": "I love \u0022ダブルラリアット\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 934, + "TitleName": "ダブルラリアットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 935, + "TitleName": "ダブルラリアットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 936, + "TitleName": "ダブルラリアットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 937, + "TitleName": "I love \u0022右肩の蝶\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 938, + "TitleName": "右肩の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 939, + "TitleName": "右肩の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 940, + "TitleName": "右肩の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 941, + "TitleName": "I love \u0022ハッピーシンセサイザ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 942, + "TitleName": "シンセサイザ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 943, + "TitleName": "シンセサイザ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 944, + "TitleName": "シンセサイザ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 945, + "TitleName": "I love \u0022恋愛フィロソフィア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 946, + "TitleName": "フィロソフィア先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 947, + "TitleName": "フィロソフィア大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 948, + "TitleName": "フィロソフィア神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 949, + "TitleName": "I love \u0022ブリキノダンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 950, + "TitleName": "ブリキノセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 951, + "TitleName": "ブリキノダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 952, + "TitleName": "ブリキノカミ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 953, + "TitleName": "I love \u0022アンダワ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 954, + "TitleName": "アンダワセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 955, + "TitleName": "アンダワダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 956, + "TitleName": "アンダワシン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 957, + "TitleName": "I love \u0022ジベタトラベル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 958, + "TitleName": "ジベタセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 959, + "TitleName": "ジベタダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 960, + "TitleName": "ジベタシン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 961, + "TitleName": "I love \u0022プラスチックケージ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 962, + "TitleName": "プラスチックセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 963, + "TitleName": "プラスチックダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 964, + "TitleName": "プラスチックシン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 965, + "TitleName": "I love \u0022ON THE VERGE OF REVIVAL\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 966, + "TitleName": "MASTER OF REVIVAL", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 967, + "TitleName": "KING OF REVIVAL", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 968, + "TitleName": "GOD OF REVIVAL", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 969, + "TitleName": "I love \u0022STAR COASTER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 970, + "TitleName": "STAR COASTER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 971, + "TitleName": "STAR COASTER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 972, + "TitleName": "STAR COASTER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 973, + "TitleName": "I love \u0022SKYSCRAPER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 974, + "TitleName": "摩天楼先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 975, + "TitleName": "摩天楼大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 976, + "TitleName": "摩天楼神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 977, + "TitleName": "I love \u0022HB-axeleration\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 978, + "TitleName": "HB-master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 979, + "TitleName": "HB-king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 980, + "TitleName": "HB-god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 981, + "TitleName": "I love \u0022聖者の鼓動\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 982, + "TitleName": "鼓動先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 983, + "TitleName": "鼓動大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 984, + "TitleName": "鼓動神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 985, + "TitleName": "I love \u0022SPACE ARCADIAN\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 986, + "TitleName": "ARCADIAN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 987, + "TitleName": "ARCADIAN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 988, + "TitleName": "ARCADIAN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 989, + "TitleName": "I love \u0022Satisfiction\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 990, + "TitleName": "Satisfiction Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 991, + "TitleName": "Satisfiction King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 992, + "TitleName": "Satisfiction God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 993, + "TitleName": "I love \u0022CERAMIC HEART\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 994, + "TitleName": "CERAMIC MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 995, + "TitleName": "CERAMIC KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 996, + "TitleName": "CERAMIC GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 997, + "TitleName": "I love \u0022Period of Revolution\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 998, + "TitleName": "Master of Revolution", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 999, + "TitleName": "King of Revolution", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1000, + "TitleName": "God of Revolution", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1001, + "TitleName": "I love \u0022Agent Angels\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1002, + "TitleName": "Master Angels", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1003, + "TitleName": "King Angels", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1004, + "TitleName": "God Angels", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1005, + "TitleName": "I love \u0022Invader GIRL!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1006, + "TitleName": "UFO-CO先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1007, + "TitleName": "UFO-CO大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1008, + "TitleName": "UFO-CO神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1009, + "TitleName": "I love \u0022ワンダーランドと羊の歌\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1010, + "TitleName": "羊先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1011, + "TitleName": "羊大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1012, + "TitleName": "羊神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1013, + "TitleName": "I love \u0022Geometric City\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1014, + "TitleName": "Geometric Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1015, + "TitleName": "Geometric King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1016, + "TitleName": "Geometric God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1017, + "TitleName": "I love \u0022空想フォレスト\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1018, + "TitleName": "空想先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1019, + "TitleName": "空想大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1020, + "TitleName": "空想神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1021, + "TitleName": "I love \u0022オツキミリサイタル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1022, + "TitleName": "オツキミ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1023, + "TitleName": "オツキミ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1024, + "TitleName": "オツキミ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1025, + "TitleName": "I love \u0022コノハの世界事情\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1026, + "TitleName": "世界事情マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1027, + "TitleName": "世界事情キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1028, + "TitleName": "世界事情ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1029, + "TitleName": "I love \u0022ロスタイムメモリー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1030, + "TitleName": "ロスタイムマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1031, + "TitleName": "ロスタイムキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1032, + "TitleName": "ロスタイムゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1033, + "TitleName": "I love \u0022東京テディベア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1034, + "TitleName": "テディベア先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1035, + "TitleName": "テディベア大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1036, + "TitleName": "テディベア神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1037, + "TitleName": "I love \u0022アストロトルーパー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1038, + "TitleName": "アストロマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1039, + "TitleName": "アストロキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1040, + "TitleName": "アストロゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1041, + "TitleName": "I love \u0022ダンシング☆サムライ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1042, + "TitleName": "ダンシング☆センセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1043, + "TitleName": "ダンシング☆ダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1044, + "TitleName": "ダンシング☆カミサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1045, + "TitleName": "I love \u0022THE WORLDS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1046, + "TitleName": "THE WORLDS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1047, + "TitleName": "THE WORLDS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1048, + "TitleName": "THE WORLDS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1049, + "TitleName": "I love \u0022独りんぼエンヴィー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1050, + "TitleName": "独りんぼ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1051, + "TitleName": "独りんぼ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1052, + "TitleName": "独りんぼ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1053, + "TitleName": "I love \u0022バビロン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1054, + "TitleName": "バビロン先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1055, + "TitleName": "バビロン大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1056, + "TitleName": "バビロン神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1057, + "TitleName": "I love \u0022魔法少女幸福論\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1058, + "TitleName": "魔法少女先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1059, + "TitleName": "魔法少女大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1060, + "TitleName": "魔法少女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1061, + "TitleName": "I love \u0022ヤンキーボーイ・ヤンキーガール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1062, + "TitleName": "ヤンキー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1063, + "TitleName": "ヤンキー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1064, + "TitleName": "ヤンキー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1065, + "TitleName": "I love \u0022アザレアの亡霊\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1066, + "TitleName": "アザレアの先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1067, + "TitleName": "アザレアの大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1068, + "TitleName": "アザレアの神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1069, + "TitleName": "I love \u0022人造エネミー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1070, + "TitleName": "人造先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1071, + "TitleName": "人造大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1072, + "TitleName": "人造神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1073, + "TitleName": "I love \u0022ヘッドフォンアクター\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1074, + "TitleName": "ヘッドフォンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1075, + "TitleName": "ヘッドフォンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1076, + "TitleName": "ヘッドフォンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1077, + "TitleName": "I love \u0022メカクシコード\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1078, + "TitleName": "メカクシマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1079, + "TitleName": "メカクシキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1080, + "TitleName": "メカクシゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1081, + "TitleName": "I love \u0022アヤノの幸福理論\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1082, + "TitleName": "幸福理論先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1083, + "TitleName": "幸福理論大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1084, + "TitleName": "幸福理論神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1085, + "TitleName": "I love \u0022夕景イエスタデイ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1086, + "TitleName": "夕景マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1087, + "TitleName": "夕景キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1088, + "TitleName": "夕景ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1089, + "TitleName": "I love \u0022アウターサイエンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1090, + "TitleName": "サイエンスマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1091, + "TitleName": "サイエンスキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1092, + "TitleName": "サイエンスゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1093, + "TitleName": "I love \u0022少年ブレイヴ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1094, + "TitleName": "ブレイヴ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1095, + "TitleName": "ブレイヴ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1096, + "TitleName": "ブレイヴ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1097, + "TitleName": "I love \u0022サマータイムレコード\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1098, + "TitleName": "サマータイムマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1099, + "TitleName": "サマータイムキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1100, + "TitleName": "サマータイムゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1101, + "TitleName": "I love \u0022It\u0027s a pit world\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1102, + "TitleName": "It\u0027s a pit master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1103, + "TitleName": "It\u0027s a pit king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1104, + "TitleName": "It\u0027s a pit god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1105, + "TitleName": "I love \u0022sister\u0027s noise\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1106, + "TitleName": "sister\u0027s master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1107, + "TitleName": "sister\u0027s king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1108, + "TitleName": "sister\u0027s god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1109, + "TitleName": "I love \u0022恋は渾沌の隷也\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1110, + "TitleName": "渾沌の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1111, + "TitleName": "渾沌の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1112, + "TitleName": "渾沌の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1113, + "TitleName": "I love \u0022M.S.S.Planet\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1114, + "TitleName": "M.S.S.Planet Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1115, + "TitleName": "M.S.S.Planet King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1116, + "TitleName": "M.S.S.Planet God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1117, + "TitleName": "I love \u0022Groove Prayer\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1118, + "TitleName": "Groove Prayer Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1119, + "TitleName": "Groove Prayer King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1120, + "TitleName": "Groove Prayer God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1121, + "TitleName": "I love \u0022Sayonara Twilight\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1122, + "TitleName": "Sayonara Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1123, + "TitleName": "Sayonara King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1124, + "TitleName": "Sayonara God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1125, + "TitleName": "I love \u0022Flakes\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1126, + "TitleName": "Flakes Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1127, + "TitleName": "Flakes King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1128, + "TitleName": "Flakes God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1129, + "TitleName": "I love \u0022Maiami Sound Beats\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1130, + "TitleName": "Maiami Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1131, + "TitleName": "Maiami King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1132, + "TitleName": "Maiami God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1133, + "TitleName": "I love \u0022終わらないグルーヴ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1134, + "TitleName": "終わらない先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1135, + "TitleName": "終わらない大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1136, + "TitleName": "終わらない神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1137, + "TitleName": "I love \u0022Under Control\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1138, + "TitleName": "Control Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1139, + "TitleName": "Control King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1140, + "TitleName": "Control God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1141, + "TitleName": "I love \u0022東方音銃夢\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1142, + "TitleName": "音銃夢先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1143, + "TitleName": "音銃夢大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1144, + "TitleName": "音銃夢神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1145, + "TitleName": "I love \u0022東方散楽祭\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1146, + "TitleName": "散楽祭先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1147, + "TitleName": "散楽祭大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1148, + "TitleName": "散楽祭神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1149, + "TitleName": "I love \u0022東方不死鳥\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1150, + "TitleName": "不死鳥先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1151, + "TitleName": "不死鳥大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1152, + "TitleName": "不死鳥神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1153, + "TitleName": "I love \u0022嗚呼、素晴らしきニャン生\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1154, + "TitleName": "嗚呼、素晴らしき先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1155, + "TitleName": "嗚呼、素晴らしき大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1156, + "TitleName": "嗚呼、素晴らしき神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1157, + "TitleName": "I love \u0022エネの電脳紀行\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1158, + "TitleName": "電脳紀行先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1159, + "TitleName": "電脳紀行大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1160, + "TitleName": "電脳紀行神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1161, + "TitleName": "I love \u0022カンフーガール=ロンメイ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1162, + "TitleName": "カンフー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1163, + "TitleName": "カンフー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1164, + "TitleName": "カンフー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1165, + "TitleName": "I love \u0022Roteen da Moon\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1166, + "TitleName": "Roteen da Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1167, + "TitleName": "Roteen da King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1168, + "TitleName": "Roteen da God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1169, + "TitleName": "I love \u0022Hard Head\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1170, + "TitleName": "Hard Head Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1171, + "TitleName": "Hard Head King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1172, + "TitleName": "Hard Head God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1173, + "TitleName": "I love \u0022TGM in the Bottle\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1174, + "TitleName": "TGM先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1175, + "TitleName": "TGM大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1176, + "TitleName": "TGM神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1177, + "TitleName": "I love \u0022Night Life\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1178, + "TitleName": "Night Life Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1179, + "TitleName": "Night Life King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1180, + "TitleName": "Night Life God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1181, + "TitleName": "I love \u0022Sakura Mankai\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1182, + "TitleName": "Mankai Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1183, + "TitleName": "Mankai King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1184, + "TitleName": "Mankai God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1185, + "TitleName": "I love \u0022Whereabouts of curry\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1186, + "TitleName": "curry先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1187, + "TitleName": "curry大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1188, + "TitleName": "curry神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1189, + "TitleName": "I love \u0022ANCIENT\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1190, + "TitleName": "ANCIENT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1191, + "TitleName": "ANCIENT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1192, + "TitleName": "ANCIENT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1193, + "TitleName": "I love \u0022THE BLUE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1194, + "TitleName": "THE BLUE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1195, + "TitleName": "THE BLUE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1196, + "TitleName": "THE BLUE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1197, + "TitleName": "I love \u0022Help me, ERINNNNNN!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1198, + "TitleName": "Help me, SENSEIIIIII!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1199, + "TitleName": "Help me, DAIOUUUUUU!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1200, + "TitleName": "Help me, KAMISAMAAAAAA!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1201, + "TitleName": "I love \u0022ナイト・オブ・ナイツ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1202, + "TitleName": "マスター・オブ・ナイツ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1203, + "TitleName": "キング・オブ・ナイツ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1204, + "TitleName": "ゴッド・オブ・ナイツ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1205, + "TitleName": "I love \u0022ウサテイ2013\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1206, + "TitleName": "ウサテイ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1207, + "TitleName": "ウサテイ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1208, + "TitleName": "ウサテイ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1209, + "TitleName": "I love \u0022東方人-TOHO BEAT-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1210, + "TitleName": "幻想郷の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1211, + "TitleName": "幻想郷の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1212, + "TitleName": "幻想郷の神主", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1213, + "TitleName": "I love \u0022魔理沙は大変なものを盗んでいきました\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1214, + "TitleName": "ごっすん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1215, + "TitleName": "ごっすん大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1216, + "TitleName": "ごっすん神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1217, + "TitleName": "I love \u0022チルノのパーフェクトさんすう教室\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1218, + "TitleName": "(9)先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1219, + "TitleName": "(9)大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1220, + "TitleName": "(9)神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1221, + "TitleName": "I love \u0022今夜はヴァンピン☆全世界ナイトメア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1222, + "TitleName": "全世界ナイトメア☆先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1223, + "TitleName": "全世界ナイトメア☆大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1224, + "TitleName": "全世界ナイトメア☆神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1225, + "TitleName": "I love \u0022OMAKENO Stroke\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1226, + "TitleName": "OMAKENO Sensei", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1227, + "TitleName": "OMAKENO Daiou", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1228, + "TitleName": "OMAKENO Kamisama", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1229, + "TitleName": "I love \u0022CHRONOPHANTASMA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1230, + "TitleName": "CHRONOMASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1231, + "TitleName": "CHRONOKING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1232, + "TitleName": "CHRONOGOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1233, + "TitleName": "I love \u0022Catus Carnival\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1234, + "TitleName": "猫先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1235, + "TitleName": "猫大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1236, + "TitleName": "猫神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1237, + "TitleName": "I love \u0022Rebellion\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1238, + "TitleName": "Rebellion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1239, + "TitleName": "Rebellion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1240, + "TitleName": "Rebellion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1241, + "TitleName": "I love \u0022Awakening The Chaos\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1242, + "TitleName": "Chaos Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1243, + "TitleName": "Chaos King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1244, + "TitleName": "Chaos God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1245, + "TitleName": "I love \u0022No more labor\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1246, + "TitleName": "労働反対先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1247, + "TitleName": "労働反対大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1248, + "TitleName": "労働反対神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1249, + "TitleName": "I love \u0022comet\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1250, + "TitleName": "彗星先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1251, + "TitleName": "彗星大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1252, + "TitleName": "彗星神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1253, + "TitleName": "I love \u0022ラバー★ポップ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1254, + "TitleName": "ラバー★先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1255, + "TitleName": "ラバー★大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1256, + "TitleName": "ラバー★神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1257, + "TitleName": "I love \u0022DX超性能フルメタル少女\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1258, + "TitleName": "DX超性能フルメタル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1259, + "TitleName": "DX超性能フルメタル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1260, + "TitleName": "DX超性能フルメタル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1261, + "TitleName": "I love \u0022コネクト\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1262, + "TitleName": "コネクト マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1263, + "TitleName": "コネクト キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1264, + "TitleName": "コネクト ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1265, + "TitleName": "I love \u0022crossing field\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1266, + "TitleName": "オンラインゲームマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1267, + "TitleName": "オンラインゲームキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1268, + "TitleName": "オンラインゲームゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1269, + "TitleName": "I love \u0022残酷な天使のテーゼ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1270, + "TitleName": "残酷な先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1271, + "TitleName": "残酷な大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1272, + "TitleName": "残酷な神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1273, + "TitleName": "I love \u0022創聖のアクエリオン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1274, + "TitleName": "創聖のマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1275, + "TitleName": "創聖のキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1276, + "TitleName": "創聖のゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1277, + "TitleName": "I love \u0022自由の翼\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1278, + "TitleName": "自由の翼 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1279, + "TitleName": "自由の翼 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1280, + "TitleName": "自由の翼 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1281, + "TitleName": "I love \u0022紅蓮の弓矢\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1282, + "TitleName": "紅蓮の弓矢 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1283, + "TitleName": "紅蓮の弓矢 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1284, + "TitleName": "紅蓮の弓矢 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1285, + "TitleName": "I love \u0022God knows…\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1286, + "TitleName": "Master knows...", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1287, + "TitleName": "King knows...", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1288, + "TitleName": "God knows...", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1289, + "TitleName": "I love \u0022白金ディスコ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1290, + "TitleName": "白金先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1291, + "TitleName": "白金大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1292, + "TitleName": "白金神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1293, + "TitleName": "I love \u0022CELESTIAL\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1294, + "TitleName": "CELESTIAL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1295, + "TitleName": "CELESTIAL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1296, + "TitleName": "CELESTIAL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1297, + "TitleName": "I love \u0022マジLOVE1000%\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1298, + "TitleName": "1000% MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1299, + "TitleName": "1000% KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1300, + "TitleName": "1000% GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1301, + "TitleName": "I love \u0022マジLOVE2000%\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1302, + "TitleName": "2000% MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1303, + "TitleName": "2000% KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1304, + "TitleName": "2000% GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1305, + "TitleName": "I love \u0022Transfer\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1306, + "TitleName": "Transfer Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1307, + "TitleName": "Transfer King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1308, + "TitleName": "Transfer God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1309, + "TitleName": "I love \u0022outsider\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1310, + "TitleName": "梅田先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1311, + "TitleName": "梅田大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1312, + "TitleName": "梅田神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1313, + "TitleName": "I love \u0022Choose Your Way\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1314, + "TitleName": "渋谷先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1315, + "TitleName": "渋谷大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1316, + "TitleName": "渋谷神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1317, + "TitleName": "I love \u0022The Future\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1318, + "TitleName": "さいたま先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1319, + "TitleName": "さいたま大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1320, + "TitleName": "さいたま神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1321, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1322, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1323, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1324, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1325, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1326, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1327, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1328, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1329, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1330, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1331, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1332, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1333, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1334, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1335, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1336, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1337, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1338, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1339, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1340, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1341, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1342, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1343, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1344, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1345, + "TitleName": "I love \u0022怪談「カーナビ」\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1346, + "TitleName": "カーナビ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1347, + "TitleName": "カーナビ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1348, + "TitleName": "カーナビ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1349, + "TitleName": "I love \u0022夏祭り\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1350, + "TitleName": "夏祭り先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1351, + "TitleName": "夏祭り大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1352, + "TitleName": "夏祭り神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1353, + "TitleName": "I love \u0022女々しくて\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1354, + "TitleName": "女々しい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1355, + "TitleName": "女々しい大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1356, + "TitleName": "女々しい神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1357, + "TitleName": "I love \u0022ジャバヲッキー・ジャバヲッカ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1358, + "TitleName": "ジャバジャバ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1359, + "TitleName": "ジャバジャバ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1360, + "TitleName": "ジャバジャバ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1361, + "TitleName": "I love \u0022エンヴィキャットウォーク\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1362, + "TitleName": "エンヴィキャットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1363, + "TitleName": "エンヴィキャットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1364, + "TitleName": "エンヴィキャットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1365, + "TitleName": "I love \u0022骸骨楽団とリリア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1366, + "TitleName": "骸骨先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1367, + "TitleName": "骸骨大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1368, + "TitleName": "骸骨神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1369, + "TitleName": "I love \u0022九龍レトロ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1370, + "TitleName": "九龍先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1371, + "TitleName": "九龍大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1372, + "TitleName": "九龍神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1373, + "TitleName": "I love \u0022パラジクロロベンゼン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1374, + "TitleName": "C6H4Cl2Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1375, + "TitleName": "C6H4Cl2King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1376, + "TitleName": "C6H4Cl2God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1377, + "TitleName": "I love \u0022え?あぁ、そう。\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1378, + "TitleName": "え?あぁ、先生。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1379, + "TitleName": "え?あぁ、大王。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1380, + "TitleName": "え?あぁ、神。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1381, + "TitleName": "I love \u0022Walking Through The Towers -Remix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1382, + "TitleName": "Tower Remix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1383, + "TitleName": "Tower Remix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1384, + "TitleName": "Tower Remix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1385, + "TitleName": "I love \u0022Departure-Remix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1386, + "TitleName": "Departure Remix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1387, + "TitleName": "Departure Remix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1388, + "TitleName": "Departure Remix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1389, + "TitleName": "I love \u0022A New Journey\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1390, + "TitleName": "Journey Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1391, + "TitleName": "Journey King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1392, + "TitleName": "Journey God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1393, + "TitleName": "I love \u0022Discover from W\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1394, + "TitleName": "W先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1395, + "TitleName": "W大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1396, + "TitleName": "W神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1397, + "TitleName": "I love \u0022決戦!! from Z\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1398, + "TitleName": "Z先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1399, + "TitleName": "Z大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1400, + "TitleName": "Z神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1401, + "TitleName": "I love \u0022Inferiority Complex\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1402, + "TitleName": "アキバ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1403, + "TitleName": "アキバ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1404, + "TitleName": "アキバ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1405, + "TitleName": "I love \u0022瞳のLAZhWARD\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1406, + "TitleName": "旧渋谷先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1407, + "TitleName": "旧渋谷大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1408, + "TitleName": "旧渋谷神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1409, + "TitleName": "I love \u0022Soul Evolution\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1410, + "TitleName": "NEO SHIBUYA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1411, + "TitleName": "NEO SHIBUYA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1412, + "TitleName": "NEO SHIBUYA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1413, + "TitleName": "I love \u0022君のいたあの日に\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1414, + "TitleName": "あの日の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1415, + "TitleName": "あの日の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1416, + "TitleName": "あの日の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1417, + "TitleName": "I love \u0022ってゐ!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1418, + "TitleName": "てゐ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1419, + "TitleName": "てゐ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1420, + "TitleName": "てゐ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1421, + "TitleName": "I love \u0022リバース・デス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1422, + "TitleName": "下克上先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1423, + "TitleName": "下克上大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1424, + "TitleName": "下克上神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1425, + "TitleName": "I love \u0022響縁\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1426, + "TitleName": "□△×○先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1427, + "TitleName": "□△×○大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1428, + "TitleName": "□△×○神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1429, + "TitleName": "I love \u0022囲い無き世は一期の月影\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1430, + "TitleName": "月影先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1431, + "TitleName": "月影大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1432, + "TitleName": "月影神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1433, + "TitleName": "I love \u0022幻想のサテライト\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1434, + "TitleName": "サテライトマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1435, + "TitleName": "サテライトキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1436, + "TitleName": "サテライトゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1437, + "TitleName": "I love \u0022Keep the Faith\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1438, + "TitleName": "Keep the Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1439, + "TitleName": "Keep the King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1440, + "TitleName": "Keep the Fujin", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1441, + "TitleName": "I love \u0022蒼空に舞え、墨染の桜\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1442, + "TitleName": "墨染の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1443, + "TitleName": "墨染の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1444, + "TitleName": "完全なる墨染の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1445, + "TitleName": "I love \u0022ケロ9destiny\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1446, + "TitleName": "両生類の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1447, + "TitleName": "両生類の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1448, + "TitleName": "両生類の神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1449, + "TitleName": "I love \u0022I, SCREAM\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1450, + "TitleName": "アイスクリーム先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1451, + "TitleName": "アイスクリーム大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1452, + "TitleName": "アイスクリーム神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1453, + "TitleName": "I love \u0022Crime Wave\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1454, + "TitleName": "百鬼夜行の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1455, + "TitleName": "百鬼夜行の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1456, + "TitleName": "百鬼夜行の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1457, + "TitleName": "I love \u0022FOUR SEASONS OF LONELINESS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1458, + "TitleName": "春夏秋冬の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1459, + "TitleName": "春夏秋冬の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1460, + "TitleName": "春夏秋冬の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1461, + "TitleName": "I love \u0022CYBER Sparks\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1462, + "TitleName": "マスタースパーク先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1463, + "TitleName": "ダブルスパーク大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1464, + "TitleName": "ファイナルスパーク神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1465, + "TitleName": "I love \u0022Weave Detonator\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1466, + "TitleName": "Detonator Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1467, + "TitleName": "Detonator King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1468, + "TitleName": "Detonator God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1469, + "TitleName": "I love \u0022ホログラム・ロマンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1470, + "TitleName": "ホログラム・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1471, + "TitleName": "ホログラム・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1472, + "TitleName": "ホログラム・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1473, + "TitleName": "I love \u0022聖者の息吹\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1474, + "TitleName": "息吹先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1475, + "TitleName": "息吹大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1476, + "TitleName": "息吹神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1477, + "TitleName": "I love \u0022ID\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1478, + "TitleName": "Master ID", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1479, + "TitleName": "King ID", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1480, + "TitleName": "God ID", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1481, + "TitleName": "I love \u0022M.S.S.Phantom\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1482, + "TitleName": "M.S.S.Phantom Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1483, + "TitleName": "M.S.S.Phantom King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1484, + "TitleName": "M.S.S.Phantom God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1485, + "TitleName": "I love \u0022ちゅるりちゅるりら\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1486, + "TitleName": "ちゅるり先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1487, + "TitleName": "ちゅるり大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1488, + "TitleName": "ちゅるり神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1489, + "TitleName": "I love \u0022でんでんぱっしょん\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1490, + "TitleName": "でんでん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1491, + "TitleName": "でんでん大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1492, + "TitleName": "でんでん神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1493, + "TitleName": "I love \u0022行くぜっ!怪盗少女\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1494, + "TitleName": "行くぜっ!先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1495, + "TitleName": "行くぜっ!大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1496, + "TitleName": "行くぜっ!神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1497, + "TitleName": "I love \u0022The Other self\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1498, + "TitleName": "The Other self Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1499, + "TitleName": "The Other self King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1500, + "TitleName": "The Other self God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1501, + "TitleName": "I love \u0022Can Do\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1502, + "TitleName": "Can Do Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1503, + "TitleName": "Can Do King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1504, + "TitleName": "Can Do God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1505, + "TitleName": "I love \u0022The Party Has Just Begun\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1506, + "TitleName": "Party Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1507, + "TitleName": "Party King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1508, + "TitleName": "Party God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1509, + "TitleName": "I love \u0022モザイクロール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1510, + "TitleName": "モザイクマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1511, + "TitleName": "モザイクキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1512, + "TitleName": "モザイクゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1513, + "TitleName": "I love \u0022ストリーミングハート\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1514, + "TitleName": "ストリーミングマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1515, + "TitleName": "ストリーミングキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1516, + "TitleName": "ストリーミングゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1517, + "TitleName": "I love \u0022弱虫モンブラン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1518, + "TitleName": "弱虫先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1519, + "TitleName": "弱虫大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1520, + "TitleName": "弱虫神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1521, + "TitleName": "I love \u0022二息歩行\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1522, + "TitleName": "二息先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1523, + "TitleName": "二息大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1524, + "TitleName": "二息神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1525, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1526, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1527, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1528, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1529, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1530, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1531, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1532, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1533, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1534, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1535, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1536, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1537, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1538, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1539, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1540, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1541, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1542, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1543, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1544, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1545, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1546, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1547, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1548, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1549, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1550, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1551, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1552, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 0 + }, + { + "Id": 1553, + "TitleName": "I love \u0022Code: Vermilion\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1554, + "TitleName": "Vermilion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1555, + "TitleName": "Vermilion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1556, + "TitleName": "Vermilion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1557, + "TitleName": "I love \u0022Rhythm Fang, Over Sword\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1558, + "TitleName": "奇襲先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1559, + "TitleName": "奇襲王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1560, + "TitleName": "奇襲神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1561, + "TitleName": "I love \u0022Over the Pride\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1562, + "TitleName": "迎撃先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1563, + "TitleName": "迎撃王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1564, + "TitleName": "迎撃神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1565, + "TitleName": "I love \u0022naraku within\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1566, + "TitleName": "naraku master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1567, + "TitleName": "naraku king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1568, + "TitleName": "naraku god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1569, + "TitleName": "I love \u0022ほとんど違法行為\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1570, + "TitleName": "ほとんど違法先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1571, + "TitleName": "ほとんど違法王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1572, + "TitleName": "ほとんど違法神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1573, + "TitleName": "I love \u0022ラスト・ガール・スタンディング\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1574, + "TitleName": "ラスト・ガール・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1575, + "TitleName": "ラスト・ガール・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1576, + "TitleName": "ラスト・ガール・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1577, + "TitleName": "I love \u0022Black Moon Sympathy\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1578, + "TitleName": "Black Moon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1579, + "TitleName": "Black Moon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1580, + "TitleName": "Black Moon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1581, + "TitleName": "I love \u0022STARLIGHT TWILIGHT\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1582, + "TitleName": "STARLIGHT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1583, + "TitleName": "STARLIGHT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1584, + "TitleName": "STARLIGHT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1585, + "TitleName": "I love \u0022零式\u003CType-ZERO\u003E\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1586, + "TitleName": "零式先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1587, + "TitleName": "零式王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1588, + "TitleName": "零式神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1589, + "TitleName": "I love \u0022Marry me, Nightmare\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1590, + "TitleName": "Marry me, Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1591, + "TitleName": "Marry me, King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1592, + "TitleName": "Marry me, God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1593, + "TitleName": "I love \u0022VELVET\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1594, + "TitleName": "VELVET MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1595, + "TitleName": "VELVET KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1596, + "TitleName": "VELVET GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1597, + "TitleName": "I love \u0022VOLT\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1598, + "TitleName": "VOLT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1599, + "TitleName": "VOLT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1600, + "TitleName": "VOLT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1601, + "TitleName": "I love \u0022空色デイズ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1602, + "TitleName": "空色先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1603, + "TitleName": "空色大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1604, + "TitleName": "空色神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1605, + "TitleName": "I love \u0022ETERNAL BLAZE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1606, + "TitleName": "ETERNAL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1607, + "TitleName": "ETERNAL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1608, + "TitleName": "ETERNAL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1609, + "TitleName": "I love \u0022でんぱーりーナイト\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 1610, + "TitleName": "ぱーりー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1611, + "TitleName": "ぱーりー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 1612, + "TitleName": "ぱーりー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 1613, + "TitleName": "I love \u0022RETROID\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1614, + "TitleName": "RETROMASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1615, + "TitleName": "RETROKING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1616, + "TitleName": "RETROGOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1617, + "TitleName": "I love \u0022Got noir forever.\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1618, + "TitleName": "Groove frontier.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1619, + "TitleName": "King of groove frontier.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1620, + "TitleName": "God noir forever.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1621, + "TitleName": "中二病God", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1622, + "TitleName": "中二病King", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1623, + "TitleName": "中二病Master", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1624, + "TitleName": "永遠の中二病", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1625, + "TitleName": "古に伝わりしゲーム実況", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1626, + "TitleName": "S\u002B級肉ばっかカレー", + "UnlockRequirementJp": "『M.S.S.Project』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1627, + "TitleName": "カ\u3000オ\u3000ス", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1628, + "TitleName": "ソウルメイト", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1629, + "TitleName": "I Love MSSP!", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1630, + "TitleName": "蓬莱の人の形", + "UnlockRequirementJp": "『東方Project 3』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1631, + "TitleName": "永遠のお姫様", + "UnlockRequirementJp": "『東方Project 3』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1632, + "TitleName": "蓬莱の薬屋さん", + "UnlockRequirementJp": "『東方Project 3』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1633, + "TitleName": "狂気の赤い瞳", + "UnlockRequirementJp": "『東方Project 3』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1634, + "TitleName": "歴史喰いの半獣", + "UnlockRequirementJp": "『東方Project 3』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1635, + "TitleName": "幸運の素兎", + "UnlockRequirementJp": "『東方Project 3』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1636, + "TitleName": "歌う夜雀", + "UnlockRequirementJp": "『東方Project 3』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1637, + "TitleName": "赤い悪魔のメイド", + "UnlockRequirementJp": "『東方Project 3』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1638, + "TitleName": "夜に蠢く光の蟲", + "UnlockRequirementJp": "『東方Project 3』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1639, + "TitleName": "土着神の頂点", + "UnlockRequirementJp": "『東方Project 4』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1640, + "TitleName": "山坂と湖の権化", + "UnlockRequirementJp": "『東方Project 4』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1641, + "TitleName": "現代っ子の現人神", + "UnlockRequirementJp": "『東方Project 4』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1642, + "TitleName": "捏造新聞記者", + "UnlockRequirementJp": "『東方Project 4』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1643, + "TitleName": "超妖怪弾頭", + "UnlockRequirementJp": "『東方Project 4』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1644, + "TitleName": "山のテレグノシス", + "UnlockRequirementJp": "『東方Project 4』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1645, + "TitleName": "えんがちょマスター", + "UnlockRequirementJp": "『東方Project 4』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1646, + "TitleName": "氷の小さな妖精", + "UnlockRequirementJp": "『東方Project 4』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1647, + "TitleName": "甘い匂いのする神様", + "UnlockRequirementJp": "『東方Project 4』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1648, + "TitleName": "初代スコアタ皇帝", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1649, + "TitleName": "初代スコアタ王", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1650, + "TitleName": "初代スコアタ大公", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1651, + "TitleName": "初代スコアタ公爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1652, + "TitleName": "初代スコアタ侯爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1653, + "TitleName": "初代スコアタ伯爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1654, + "TitleName": "初代スコアタ子爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1655, + "TitleName": "初代スコアタ男爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1656, + "TitleName": "初代スコアタ騎士", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1657, + "TitleName": "二代目スコアタ皇帝", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1658, + "TitleName": "二代目スコアタ王", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1659, + "TitleName": "二代目スコアタ大公", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1660, + "TitleName": "二代目スコアタ公爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1661, + "TitleName": "二代目スコアタ侯爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1662, + "TitleName": "二代目スコアタ伯爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1663, + "TitleName": "二代目スコアタ子爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1664, + "TitleName": "二代目スコアタ男爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1665, + "TitleName": "二代目スコアタ騎士", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1666, + "TitleName": "三代目スコアタ皇帝", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1667, + "TitleName": "三代目スコアタ王", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1668, + "TitleName": "三代目スコアタ大公", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1669, + "TitleName": "三代目スコアタ公爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1670, + "TitleName": "三代目スコアタ侯爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1671, + "TitleName": "三代目スコアタ伯爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1672, + "TitleName": "三代目スコアタ子爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1673, + "TitleName": "三代目スコアタ男爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1674, + "TitleName": "三代目スコアタ騎士", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1675, + "TitleName": "I love \u0022オレンジ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1676, + "TitleName": "オレンジ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1677, + "TitleName": "オレンジ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1678, + "TitleName": "オレンジ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1679, + "TitleName": "I love \u0022クリスタライズ!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1680, + "TitleName": "クリスタライズ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1681, + "TitleName": "クリスタライズ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1682, + "TitleName": "クリスタライズ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1683, + "TitleName": "I love \u0022I\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1684, + "TitleName": "I am Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1685, + "TitleName": "I am King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1686, + "TitleName": "I am God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1687, + "TitleName": "I love \u0022Faint Love\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1688, + "TitleName": "フェイント先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1689, + "TitleName": "フェイント大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1690, + "TitleName": "フェイント神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1691, + "TitleName": "I Love \u0022Cruel Moon NuMIX\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1692, + "TitleName": "Cruel Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1693, + "TitleName": "Cruel King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1694, + "TitleName": "Cruel God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1695, + "TitleName": "I love \u0022患部で止まってすぐ溶ける\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1696, + "TitleName": "うどんげ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1697, + "TitleName": "うどんげ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1698, + "TitleName": "うどんげ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1699, + "TitleName": "I love \u0022The Beginning\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1700, + "TitleName": "Beginning Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1701, + "TitleName": "Beginning King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1702, + "TitleName": "Beginning God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1703, + "TitleName": "I love \u0022Circuit DISCO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1704, + "TitleName": "Circuit MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1705, + "TitleName": "Circuit KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1706, + "TitleName": "Circuit GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1707, + "TitleName": "I love \u0022Shooting Star-IA-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1708, + "TitleName": "Shooting Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1709, + "TitleName": "Shooting King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1710, + "TitleName": "Shooting God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1711, + "TitleName": "I love \u0022NO feat. IA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1712, + "TitleName": "NO MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1713, + "TitleName": "NO KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1714, + "TitleName": "NO GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1715, + "TitleName": "I love \u0022ワールド・コーリング\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1716, + "TitleName": "ハローハロー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1717, + "TitleName": "ハローハロー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1718, + "TitleName": "ハローハロー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1719, + "TitleName": "I love \u0022SEE THE LIGHTS feat. IA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1720, + "TitleName": "LIGHTS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1721, + "TitleName": "LIGHTS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1722, + "TitleName": "LIGHTS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1723, + "TitleName": "I love \u0022Over Drive\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1724, + "TitleName": "Over Drive Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1725, + "TitleName": "Over Drive King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1726, + "TitleName": "Over Drive God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1727, + "TitleName": "I love \u0022Cardiac Rhythm\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1728, + "TitleName": "Cardiac Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1729, + "TitleName": "Cardiac King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1730, + "TitleName": "Cardiac God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1731, + "TitleName": "I love \u00222112410403927243233368\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1732, + "TitleName": "2112410403 71334169", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1733, + "TitleName": "2112410403 22032304", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1734, + "TitleName": "2112410403 2504434504", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1735, + "TitleName": "I love \u0022カタワレ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1736, + "TitleName": "ヤタガラス・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1737, + "TitleName": "ヤタガラス・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1738, + "TitleName": "ヤタガラス・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1739, + "TitleName": "I love \u0022CHRONORISE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1740, + "TitleName": "CHRONO MASTER Ver.2.0", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1741, + "TitleName": "CHRONO KING Ver.2.0", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1742, + "TitleName": "CHRONO GOD Ver.2.0", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1743, + "TitleName": "I love \u0022Queen of rose\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1744, + "TitleName": "ヴァンパイア先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1745, + "TitleName": "ヴァンパイア姫", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1746, + "TitleName": "ヴァンパイア神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1747, + "TitleName": "I love \u0022Gluttony Fang\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1748, + "TitleName": "蛇先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1749, + "TitleName": "蛇大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1750, + "TitleName": "蛇神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1751, + "TitleName": "I love \u0022平成快晴どってんしゃん\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1752, + "TitleName": "どってんしゃん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1753, + "TitleName": "どってんしゃん大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1754, + "TitleName": "どってんしゃん神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1755, + "TitleName": "I love \u0022メシアの邂逅\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1756, + "TitleName": "救世主先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1757, + "TitleName": "救世主大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1758, + "TitleName": "救世主", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1759, + "TitleName": "I love \u0022Sweet Love\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1760, + "TitleName": "甘い甘い先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1761, + "TitleName": "甘い甘い大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1762, + "TitleName": "甘い甘い神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1763, + "TitleName": "I love \u0022シンデレラシンドローム\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1764, + "TitleName": "マスターシンドローム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1765, + "TitleName": "キングシンドローム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1766, + "TitleName": "ゴッドシンドローム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1767, + "TitleName": "I love \u0022 BURN ALT AIR\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1768, + "TitleName": "URBAN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1769, + "TitleName": "URBAN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1770, + "TitleName": "URBAN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1771, + "TitleName": "星の歌姫", + "UnlockRequirementJp": "『IA』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1772, + "TitleName": "光の歌姫", + "UnlockRequirementJp": "『IA』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1773, + "TitleName": "流星の歌姫", + "UnlockRequirementJp": "『IA』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1774, + "TitleName": "世界の歌姫", + "UnlockRequirementJp": "『IA』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1775, + "TitleName": "サーキットの歌姫", + "UnlockRequirementJp": "『IA』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1776, + "TitleName": "クラブの歌姫", + "UnlockRequirementJp": "『IA』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1777, + "TitleName": "みんなの歌姫", + "UnlockRequirementJp": "『IA』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1778, + "TitleName": "ARIA ON THE PLANETES", + "UnlockRequirementJp": "『IA』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1779, + "TitleName": "I Love IA", + "UnlockRequirementJp": "『IA』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1780, + "TitleName": "帝", + "UnlockRequirementJp": "『ブレイブルー』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1781, + "TitleName": "黒き獣", + "UnlockRequirementJp": "『ブレイブルー』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1782, + "TitleName": "六英雄", + "UnlockRequirementJp": "『ブレイブルー』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1783, + "TitleName": "第七機関", + "UnlockRequirementJp": "『ブレイブルー』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1784, + "TitleName": "冥王の剣", + "UnlockRequirementJp": "『ブレイブルー』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1785, + "TitleName": "ニャスニャス!", + "UnlockRequirementJp": "『ブレイブルー』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1786, + "TitleName": "十二宗家", + "UnlockRequirementJp": "『ブレイブルー』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1787, + "TitleName": "世界の傍観者", + "UnlockRequirementJp": "『ブレイブルー』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1788, + "TitleName": "碧の魔道書", + "UnlockRequirementJp": "『ブレイブルー』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1789, + "TitleName": "I Love 格ゲー", + "UnlockRequirementJp": "コラボ称号", + "UnlockRequirementEn": "Collaboration title", + "UnlockType": 12 + }, + { + "Id": 1790, + "TitleName": "ヤタガラス勢", + "UnlockRequirementJp": "コラボ称号", + "UnlockRequirementEn": "Collaboration title", + "UnlockType": 12 + }, + { + "Id": 1791, + "TitleName": "I love \u0022カンフーマスター=拳\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1792, + "TitleName": "カンフーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1793, + "TitleName": "カンフーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1794, + "TitleName": "カンフーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1795, + "TitleName": "I love \u0022Play merrily NEO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1796, + "TitleName": "NEO陽気先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1797, + "TitleName": "NEO陽気大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1798, + "TitleName": "NEO陽気神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1799, + "TitleName": "I love \u0022BEFORE TEN ORB\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1800, + "TitleName": "地球割り先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1801, + "TitleName": "地球割り大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1802, + "TitleName": "地球割り神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1803, + "TitleName": "I love \u0022Not get wish\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1804, + "TitleName": "Not get master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1805, + "TitleName": "Not get king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1806, + "TitleName": "Not get god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1807, + "TitleName": "I love \u0022Spider Control 16th\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1808, + "TitleName": "Spider Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1809, + "TitleName": "Spider King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1810, + "TitleName": "Spider God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1811, + "TitleName": "I love \u0022Arabesque\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1812, + "TitleName": "Arabesque Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1813, + "TitleName": "Arabesque King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1814, + "TitleName": "Arabesque God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1815, + "TitleName": "I love \u0022Phone Dead Room\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1816, + "TitleName": "Phone Dead Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1817, + "TitleName": "Phone Dead King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1818, + "TitleName": "Phone Dead God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1819, + "TitleName": "I love \u0022Crowded Town\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1820, + "TitleName": "Crowded Town Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1821, + "TitleName": "Crowded Town King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1822, + "TitleName": "Crowded Town God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1823, + "TitleName": "I love \u0022Stronger\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 1824, + "TitleName": "Stronger Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1825, + "TitleName": "Stronger King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 1826, + "TitleName": "Stronger God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 1827, + "TitleName": "I love \u0022クラブ=マジェスティ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1828, + "TitleName": "マジェスティ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1829, + "TitleName": "マジェスティ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1830, + "TitleName": "マジェスティ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1831, + "TitleName": "I love \u0022待チ人ハ来ズ。\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1832, + "TitleName": "からかさ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1833, + "TitleName": "からかさ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1834, + "TitleName": "からかさ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1835, + "TitleName": "I love \u0022Heavenly Particle\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 1836, + "TitleName": "微粒子先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1837, + "TitleName": "微粒子大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 1838, + "TitleName": "微粒子神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 1839, + "TitleName": "I love \u0022FREE CONNECTION 2\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1840, + "TitleName": "MURASAME MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1841, + "TitleName": "MURASAME KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1842, + "TitleName": "MURASAME GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1843, + "TitleName": "I love \u0022I CANNOT APE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1844, + "TitleName": "Origin MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1845, + "TitleName": "Origin KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1846, + "TitleName": "Origin GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1847, + "TitleName": "I love \u0022G ZERO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1848, + "TitleName": "Genesis MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1849, + "TitleName": "Genesis KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1850, + "TitleName": "Genesis GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1851, + "TitleName": "I love \u0022FAKE (ALR REMIX)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1852, + "TitleName": "Gaiden MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1853, + "TitleName": "Gaiden KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1854, + "TitleName": "Gaiden GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1855, + "TitleName": "I love \u0022The world of spirit\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1856, + "TitleName": "Burst MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1857, + "TitleName": "Burst KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1858, + "TitleName": "Burst GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1859, + "TitleName": "てくてくゴッド", + "UnlockRequirementJp": "『てくてくビート』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1860, + "TitleName": "てくてくキング", + "UnlockRequirementJp": "『てくてくビート』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1861, + "TitleName": "てくてくマスター", + "UnlockRequirementJp": "『てくてくビート』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1862, + "TitleName": "ALL JUST BEAT!!", + "UnlockRequirementJp": "『てくてくビート』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1863, + "TitleName": "HIGH TENSION", + "UnlockRequirementJp": "『てくてくビート』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1864, + "TitleName": "NORMAL TENSION", + "UnlockRequirementJp": "『てくてくビート』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1865, + "TitleName": "I LOVE リズムゲーム", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 1866, + "TitleName": "I LOVE てくてくビート", + "UnlockRequirementJp": "『てくてくビート』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1867, + "TitleName": "GREAT THING", + "UnlockRequirementJp": "『ダライアス』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1868, + "TitleName": "THE EMBRYON", + "UnlockRequirementJp": "『ダライアス』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1869, + "TitleName": "STORM CAUSER", + "UnlockRequirementJp": "『ダライアス』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1870, + "TitleName": "HUNGRY GLUTTONS", + "UnlockRequirementJp": "『ダライアス』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1871, + "TitleName": "ELECTRIC FAN", + "UnlockRequirementJp": "『ダライアス』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1872, + "TitleName": "WARNING!!", + "UnlockRequirementJp": "『ダライアス』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1873, + "TitleName": "ECLIPSES EYE", + "UnlockRequirementJp": "『ダライアス』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1874, + "TitleName": "IRON FOSSIL", + "UnlockRequirementJp": "『ダライアス』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1875, + "TitleName": "銀翼の鷹", + "UnlockRequirementJp": "『ダライアス』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1876, + "TitleName": "BIO STRONG", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1877, + "TitleName": "MOTHER HAWK", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1878, + "TitleName": "STRONG SHELL", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1879, + "TitleName": "VIOLENT RULER", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1880, + "TitleName": "THOUSAND KNIVES", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1881, + "TitleName": "KING FOSSIL", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1882, + "TitleName": "GOLDEN OGRE", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1883, + "TitleName": "GREEN CORONATUS", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1884, + "TitleName": "I LOVE DARIUS", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1885, + "TitleName": "", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 1886, + "TitleName": "I LOVE ZUNTATA", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 1887, + "TitleName": "I love \u0022Tell Your World\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1888, + "TitleName": "Tell Your Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1889, + "TitleName": "Tell Your King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1890, + "TitleName": "Tell Your God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1891, + "TitleName": "I love \u0022ハジメテノオト\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1892, + "TitleName": "ハジメテノセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1893, + "TitleName": "ハジメテノオウサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1894, + "TitleName": "ハジメテノカミサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1895, + "TitleName": "I love \u0022morning haze\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1896, + "TitleName": "morning master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1897, + "TitleName": "morning king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1898, + "TitleName": "morning god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1899, + "TitleName": "I love \u0022プラグアウト\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1900, + "TitleName": "プラグマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1901, + "TitleName": "プラグキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1902, + "TitleName": "プラグゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1903, + "TitleName": "I love \u0022DYE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1904, + "TitleName": "DYE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1905, + "TitleName": "DYE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1906, + "TitleName": "DYE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1907, + "TitleName": "I love \u0022Spider\u0027s Blood\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1908, + "TitleName": "Master\u0027s Blood", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1909, + "TitleName": "King\u0027s Blood", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1910, + "TitleName": "God\u0027s Blood", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1911, + "TitleName": "I love \u0022ゆけむり魂温泉\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1912, + "TitleName": "ゆけむり先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1913, + "TitleName": "ゆけむり大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1914, + "TitleName": "ゆけむり神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1915, + "TitleName": "I love \u0022BlazeConductor\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1916, + "TitleName": "Blaze Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1917, + "TitleName": "Blaze King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1918, + "TitleName": "Blaze God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1919, + "TitleName": "I love \u0022二次元ドリームフィーバー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1920, + "TitleName": "二次元先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1921, + "TitleName": "二次元大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1922, + "TitleName": "二次元神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1923, + "TitleName": "I love \u0022リンネ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1924, + "TitleName": "環状線先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1925, + "TitleName": "環状線大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1926, + "TitleName": "環状線神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1927, + "TitleName": "I love \u0022Halcyon\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 1928, + "TitleName": "Halcyon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1929, + "TitleName": "Halcyon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 1930, + "TitleName": "Halcyon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 1931, + "TitleName": "I love \u0022バブルボブルメドレー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1932, + "TitleName": "バブルボブルマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1933, + "TitleName": "バブルボブルキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1934, + "TitleName": "バブルボブルゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1935, + "TitleName": "I love \u0022Invade You\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1936, + "TitleName": "Invade Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1937, + "TitleName": "Invade King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1938, + "TitleName": "Invade God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1939, + "TitleName": "I love \u0022FullMoon\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1940, + "TitleName": "満月先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1941, + "TitleName": "満月大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1942, + "TitleName": "満月神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1943, + "TitleName": "I love \u0022Packaged\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1944, + "TitleName": "Packaged Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1945, + "TitleName": "Packaged King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1946, + "TitleName": "Packaged God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1947, + "TitleName": "I love \u0022リモコン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 1948, + "TitleName": "LRLRABAB先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1949, + "TitleName": "LRLRABAB大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 1950, + "TitleName": "LRLRABAB神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 1951, + "TitleName": "I love \u0022Foughten Field\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1952, + "TitleName": "御柱先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1953, + "TitleName": "御柱大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1954, + "TitleName": "御柱神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1955, + "TitleName": "I love \u0022Static Const Void\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 1956, + "TitleName": "Genesys Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1957, + "TitleName": "Genesys King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 1958, + "TitleName": "Genesys God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 1959, + "TitleName": "I love \u0022D\u002BD→T\u002Bp\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 1960, + "TitleName": "太陽先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1961, + "TitleName": "太陽大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 1962, + "TitleName": "太陽神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 1963, + "TitleName": "MikuMikuGod", + "UnlockRequirementJp": "『初音ミク』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1964, + "TitleName": "MikuMikuKing", + "UnlockRequirementJp": "『初音ミク』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1965, + "TitleName": "MikuMikuMaster", + "UnlockRequirementJp": "『初音ミク』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1966, + "TitleName": "女神になったミクさん", + "UnlockRequirementJp": "『初音ミク』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1967, + "TitleName": "ただでさえ天使のミクさん", + "UnlockRequirementJp": "『初音ミク』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1968, + "TitleName": "S\u002B級長ネギ", + "UnlockRequirementJp": "『初音ミク』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1969, + "TitleName": "電子の歌姫", + "UnlockRequirementJp": "『初音ミク』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1970, + "TitleName": "I LOVE 初音ミク", + "UnlockRequirementJp": "『初音ミク』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1971, + "TitleName": "バーチャル・シンガー", + "UnlockRequirementJp": "『初音ミク』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1972, + "TitleName": "閉じた恋の瞳", + "UnlockRequirementJp": "『東方Project5』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1973, + "TitleName": "熱かい悩む神の火", + "UnlockRequirementJp": "『東方Project5』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1974, + "TitleName": "地獄の輪禍", + "UnlockRequirementJp": "『東方Project5』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1975, + "TitleName": "怨霊も恐れ怯む少女", + "UnlockRequirementJp": "『東方Project5』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1976, + "TitleName": "語られる怪力乱神", + "UnlockRequirementJp": "『東方Project5』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1977, + "TitleName": "恐るべき井戸の怪", + "UnlockRequirementJp": "『東方Project5』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1978, + "TitleName": "地殻の下の嫉妬心", + "UnlockRequirementJp": "『東方Project5』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1979, + "TitleName": "祀られる風の人間", + "UnlockRequirementJp": "『東方Project5』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1980, + "TitleName": "暗い洞窟の明るい網", + "UnlockRequirementJp": "『東方Project5』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1981, + "TitleName": "未確認幻想飛行少女", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1982, + "TitleName": "封印された大魔法使い", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1983, + "TitleName": "毘沙門天の弟子", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1984, + "TitleName": "水難事故の念縛霊", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1985, + "TitleName": "湖の氷精", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1986, + "TitleName": "守り守られし大輪", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1987, + "TitleName": "愉快な忘れ傘", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1988, + "TitleName": "Undefined Fantastic Object", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1989, + "TitleName": "ダウザーの小さな大将", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 1990, + "TitleName": "TAITO GAME MASTER", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 1991, + "TitleName": "キャッチ・ザ・ハート", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 1992, + "TitleName": "THE NINJA WARRIORS", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 1993, + "TitleName": "FEVER! FEVER! FEVER!", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 1994, + "TitleName": "泡はきドラゴン", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 1995, + "TitleName": "わわわわーにん!", + "UnlockRequirementJp": "『タイトーゲーム』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 1996, + "TitleName": "EXTREME", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 1997, + "TitleName": "GENESYS", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 1998, + "TitleName": "I LOVE バブルン", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 1999, + "TitleName": "グルーヴ四千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n310曲で達成", + "UnlockRequirementEn": "Got an S for 310 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2000, + "TitleName": "グルーヴ五千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n320曲で達成", + "UnlockRequirementEn": "Got an S for 320 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2001, + "TitleName": "グルーヴ六千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n330曲で達成", + "UnlockRequirementEn": "Got an S for 330 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2002, + "TitleName": "グルーヴ七千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n340曲で達成", + "UnlockRequirementEn": "Got an S for 340 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2003, + "TitleName": "グルーヴ八千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n350曲で達成", + "UnlockRequirementEn": "Got an S for 350 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2004, + "TitleName": "グルーヴ九千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n360曲で達成", + "UnlockRequirementEn": "Got an S for 360 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2005, + "TitleName": "グルーヴ一万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n370曲で達成", + "UnlockRequirementEn": "Got an S for 370 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2006, + "TitleName": "グルーヴ二万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n380曲で達成", + "UnlockRequirementEn": "Got an S for 380 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2007, + "TitleName": "グルーヴ三万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n390曲で達成", + "UnlockRequirementEn": "Got an S for 390 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2008, + "TitleName": "グルーヴ四万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n400曲で達成", + "UnlockRequirementEn": "Got an S for 400 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2009, + "TitleName": "グルーヴ五万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n410曲で達成", + "UnlockRequirementEn": "Got an S for 410 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2010, + "TitleName": "グルーヴ六万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n420曲で達成", + "UnlockRequirementEn": "Got an S for 420 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2011, + "TitleName": "グルーヴ七万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n430曲で達成", + "UnlockRequirementEn": "Got an S for 430 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2012, + "TitleName": "グルーヴ八万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n440曲で達成", + "UnlockRequirementEn": "Got an S for 440 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2013, + "TitleName": "グルーヴ九万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n450曲で達成", + "UnlockRequirementEn": "Got an S for 450 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2014, + "TitleName": "グルーヴ十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n460曲で達成", + "UnlockRequirementEn": "Got an S for 460 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2015, + "TitleName": "グルーヴ二十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n470曲で達成", + "UnlockRequirementEn": "Got an S for 470 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2016, + "TitleName": "グルーヴ三十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n480曲で達成", + "UnlockRequirementEn": "Got an S for 480 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2017, + "TitleName": "グルーヴ四十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n490曲で達成", + "UnlockRequirementEn": "Got an S for 490 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2018, + "TitleName": "グルーヴ五十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n500曲で達成", + "UnlockRequirementEn": "Got an S for 500 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 2019, + "TitleName": "S+級味噌汁", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n310曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 310 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2020, + "TitleName": "S+級たい焼き", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n320曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 320 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2021, + "TitleName": "S+級サンドウィッチ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n330曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 330 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2022, + "TitleName": "S+級餃子", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n340曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 340 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2023, + "TitleName": "S+級かき氷", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n350曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 350 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2024, + "TitleName": "S+級カツ丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n360曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 360 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2025, + "TitleName": "S+級冷やし中華", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n370曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 370 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2026, + "TitleName": "S+級コロッケ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n380曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 380 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2027, + "TitleName": "S+級たこ焼き", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n390曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 390 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2028, + "TitleName": "S+級刺身", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n400曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 400 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2029, + "TitleName": "S+級ドーナッツ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n410曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 410 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2030, + "TitleName": "S+級肉じゃが", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n420曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 420 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2031, + "TitleName": "S+級串カツ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n430曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 430 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2032, + "TitleName": "S+級シチュー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n440曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 440 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2033, + "TitleName": "S+級天丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n450曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 450 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2034, + "TitleName": "S+級シュークリーム", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n460曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 460 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2035, + "TitleName": "S+級紅茶", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n470曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 470 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2036, + "TitleName": "S+級麻婆豆腐", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n480曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 480 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2037, + "TitleName": "S+級うな重", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n490曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 490 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2038, + "TitleName": "S+級おにぎり", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n500曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 500 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 2039, + "TitleName": "真・十兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n310曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 310 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2040, + "TitleName": "真・百兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n320曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 320 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2041, + "TitleName": "真・千兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n330曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 330 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2042, + "TitleName": "真・一京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n340曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 340 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2043, + "TitleName": "真・十京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n350曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 350 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2044, + "TitleName": "真・百京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n360曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 360 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2045, + "TitleName": "真・千京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n370曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 370 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2046, + "TitleName": "真・一垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n380曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 380 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2047, + "TitleName": "真・十垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n390曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 390 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2048, + "TitleName": "真・百垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n400曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 400 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2049, + "TitleName": "真・千垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n410曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 410 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2050, + "TitleName": "真・一じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n420曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 420 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2051, + "TitleName": "真・十じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n430曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 430 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2052, + "TitleName": "真・百じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n440曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 440 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2053, + "TitleName": "真・千じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n450曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 450 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2054, + "TitleName": "真・一穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n460曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 460 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2055, + "TitleName": "真・十穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n470曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 470 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2056, + "TitleName": "真・百穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n480曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 480 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2057, + "TitleName": "真・千穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n490曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 490 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2058, + "TitleName": "真・一溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n500曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 500 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 2059, + "TitleName": "ワーウルフ", + "UnlockRequirementJp": "NO\u3000MISSを1050ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1050 stages", + "UnlockType": 3 + }, + { + "Id": 2060, + "TitleName": "ペガサス", + "UnlockRequirementJp": "NO\u3000MISSを1100ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1100 stages", + "UnlockType": 3 + }, + { + "Id": 2061, + "TitleName": "コカトリス", + "UnlockRequirementJp": "NO\u3000MISSを1150ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1150 stages", + "UnlockType": 3 + }, + { + "Id": 2062, + "TitleName": "ドリアード", + "UnlockRequirementJp": "NO\u3000MISSを1200ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1200 stages", + "UnlockType": 3 + }, + { + "Id": 2063, + "TitleName": "スキュラ", + "UnlockRequirementJp": "NO\u3000MISSを1250ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1250 stages", + "UnlockType": 3 + }, + { + "Id": 2064, + "TitleName": "キマイラ", + "UnlockRequirementJp": "NO\u3000MISSを1300ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1300 stages", + "UnlockType": 3 + }, + { + "Id": 2065, + "TitleName": "リザードマン", + "UnlockRequirementJp": "NO\u3000MISSを1350ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1350 stages", + "UnlockType": 3 + }, + { + "Id": 2066, + "TitleName": "ゴグマゴク", + "UnlockRequirementJp": "NO\u3000MISSを1400ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1400 stages", + "UnlockType": 3 + }, + { + "Id": 2067, + "TitleName": "リンドブルム", + "UnlockRequirementJp": "NO\u3000MISSを1450ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1450 stages", + "UnlockType": 3 + }, + { + "Id": 2068, + "TitleName": "ティアマト", + "UnlockRequirementJp": "NO\u3000MISSを1500ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1500 stages", + "UnlockType": 3 + }, + { + "Id": 2069, + "TitleName": "スレイプニル", + "UnlockRequirementJp": "FULL\u3000CHAINを1050ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1050 stages", + "UnlockType": 4 + }, + { + "Id": 2070, + "TitleName": "玄武", + "UnlockRequirementJp": "FULL\u3000CHAINを1100ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1100 stages", + "UnlockType": 4 + }, + { + "Id": 2071, + "TitleName": "白虎", + "UnlockRequirementJp": "FULL\u3000CHAINを1150ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1150 stages", + "UnlockType": 4 + }, + { + "Id": 2072, + "TitleName": "青龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1200ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1200 stages", + "UnlockType": 4 + }, + { + "Id": 2073, + "TitleName": "朱雀", + "UnlockRequirementJp": "FULL\u3000CHAINを1250ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1250 stages", + "UnlockType": 4 + }, + { + "Id": 2074, + "TitleName": "麒麟", + "UnlockRequirementJp": "FULL\u3000CHAINを1300ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1300 stages", + "UnlockType": 4 + }, + { + "Id": 2075, + "TitleName": "九尾", + "UnlockRequirementJp": "FULL\u3000CHAINを1350ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1350 stages", + "UnlockType": 4 + }, + { + "Id": 2076, + "TitleName": "風神", + "UnlockRequirementJp": "FULL\u3000CHAINを1400ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1400 stages", + "UnlockType": 4 + }, + { + "Id": 2077, + "TitleName": "雷神", + "UnlockRequirementJp": "FULL\u3000CHAINを1450ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1450 stages", + "UnlockType": 4 + }, + { + "Id": 2078, + "TitleName": "八岐大蛇", + "UnlockRequirementJp": "FULL\u3000CHAINを1500ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1500 stages", + "UnlockType": 4 + }, + { + "Id": 2079, + "TitleName": "S級森蘭丸", + "UnlockRequirementJp": "S評価をSIMPLE325ステージで達成", + "UnlockRequirementEn": "Got an S for 325 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2080, + "TitleName": "S級今川義元", + "UnlockRequirementJp": "S評価をSIMPLE350ステージで達成", + "UnlockRequirementEn": "Got an S for 350 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2081, + "TitleName": "S級斎藤道三", + "UnlockRequirementJp": "S評価をSIMPLE375ステージで達成", + "UnlockRequirementEn": "Got an S for 375 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2082, + "TitleName": "S級浅井長政", + "UnlockRequirementJp": "S評価をSIMPLE400ステージで達成", + "UnlockRequirementEn": "Got an S for 400 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2083, + "TitleName": "S級雑賀孫市", + "UnlockRequirementJp": "S評価をSIMPLE425ステージで達成", + "UnlockRequirementEn": "Got an S for 425 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2084, + "TitleName": "S級柴田勝家", + "UnlockRequirementJp": "S評価をSIMPLE450ステージで達成", + "UnlockRequirementEn": "Got an S for 450 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2085, + "TitleName": "S級北条氏康", + "UnlockRequirementJp": "S評価をSIMPLE475ステージで達成", + "UnlockRequirementEn": "Got an S for 475 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2086, + "TitleName": "S級前田慶次", + "UnlockRequirementJp": "S評価をSIMPLE500ステージで達成", + "UnlockRequirementEn": "Got an S for 500 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 2087, + "TitleName": "S級前田利家", + "UnlockRequirementJp": "S評価をNORMAL325ステージで達成", + "UnlockRequirementEn": "Got an S for 325 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2088, + "TitleName": "S級明智光秀", + "UnlockRequirementJp": "S評価をNORMAL350ステージで達成", + "UnlockRequirementEn": "Got an S for 350 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2089, + "TitleName": "S級直江兼続", + "UnlockRequirementJp": "S評価をNORMAL375ステージで達成", + "UnlockRequirementEn": "Got an S for 375 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2090, + "TitleName": "S級黒田官兵衛", + "UnlockRequirementJp": "S評価をNORMAL400ステージで達成", + "UnlockRequirementEn": "Got an S for 400 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2091, + "TitleName": "S級毛利元就", + "UnlockRequirementJp": "S評価をNORMAL425ステージで達成", + "UnlockRequirementEn": "Got an S for 425 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2092, + "TitleName": "S級島津義弘", + "UnlockRequirementJp": "S評価をNORMAL450ステージで達成", + "UnlockRequirementEn": "Got an S for 450 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2093, + "TitleName": "S級長宗我部元親", + "UnlockRequirementJp": "S評価をNORMAL475ステージで達成", + "UnlockRequirementEn": "Got an S for 475 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2094, + "TitleName": "S級本多忠勝", + "UnlockRequirementJp": "S評価をNORMAL500ステージで達成", + "UnlockRequirementEn": "Got an S for 500 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 2095, + "TitleName": "S級真田幸村", + "UnlockRequirementJp": "S評価をHARD325ステージで達成", + "UnlockRequirementEn": "Got an S for 325 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2096, + "TitleName": "S級石田三成", + "UnlockRequirementJp": "S評価をHARD350ステージで達成", + "UnlockRequirementEn": "Got an S for 350 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2097, + "TitleName": "S級豊臣秀吉", + "UnlockRequirementJp": "S評価をHARD375ステージで達成", + "UnlockRequirementEn": "Got an S for 375 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2098, + "TitleName": "S級伊達政宗", + "UnlockRequirementJp": "S評価をHARD400ステージで達成", + "UnlockRequirementEn": "Got an S for 400 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2099, + "TitleName": "S級徳川家康", + "UnlockRequirementJp": "S評価をHARD425ステージで達成", + "UnlockRequirementEn": "Got an S for 425 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2100, + "TitleName": "S級上杉謙信", + "UnlockRequirementJp": "S評価をHARD450ステージで達成", + "UnlockRequirementEn": "Got an S for 450 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2101, + "TitleName": "S級武田信玄", + "UnlockRequirementJp": "S評価をHARD475ステージで達成", + "UnlockRequirementEn": "Got an S for 475 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2102, + "TitleName": "S級織田信長", + "UnlockRequirementJp": "S評価をHARD500ステージで達成", + "UnlockRequirementEn": "Got an S for 500 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 2103, + "TitleName": "I love \u0022サドマミホリック\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2104, + "TitleName": "サドマミマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2105, + "TitleName": "サドマミキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2106, + "TitleName": "サドマミゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2107, + "TitleName": "I love \u0022Solar Storm\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2108, + "TitleName": "Solar Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2109, + "TitleName": "Solar King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2110, + "TitleName": "Solar God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2111, + "TitleName": "I love \u0022SiLent ErRors -Un-True-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 2112, + "TitleName": "SiLent Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2113, + "TitleName": "SiLent King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2114, + "TitleName": "SiLent God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 2115, + "TitleName": "I love \u0022文学少女インセイン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2116, + "TitleName": "文学少女マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2117, + "TitleName": "文学少女キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2118, + "TitleName": "文学少女ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2119, + "TitleName": "I love \u0022ダンスダンスデカダンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2120, + "TitleName": "ダンスダンスマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2121, + "TitleName": "ダンスダンスキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2122, + "TitleName": "ダンスダンスゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2123, + "TitleName": "I love \u0022ココロ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2124, + "TitleName": "ココロマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2125, + "TitleName": "ココロキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2126, + "TitleName": "ココロゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2127, + "TitleName": "I love \u0022先生と少女騒動 -第一審公判-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2128, + "TitleName": "先生と少女騒動", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2129, + "TitleName": "王様と少女騒動", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2130, + "TitleName": "神様と少女騒動", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2131, + "TitleName": "I love \u0022秘密警察\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2132, + "TitleName": "秘密先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2133, + "TitleName": "秘密大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2134, + "TitleName": "秘密神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2135, + "TitleName": "I love \u0022Black MInD\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2136, + "TitleName": "Black Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2137, + "TitleName": "Black King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2138, + "TitleName": "Black God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2139, + "TitleName": "I love \u0022最速最高シャッターガール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2140, + "TitleName": "最速最高先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2141, + "TitleName": "最速最高大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2142, + "TitleName": "最速最高神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2143, + "TitleName": "I love \u0022天狗の詫び証文\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2144, + "TitleName": "先生の詫び証文", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2145, + "TitleName": "王様の詫び証文", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2146, + "TitleName": "神様の詫び証文", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2147, + "TitleName": "I love \u0022MY FIRST FLOWER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2148, + "TitleName": "MY FIRST MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2149, + "TitleName": "MY FIRST KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2150, + "TitleName": "MY FIRST GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2151, + "TitleName": "I love \u0022聖少女サクリファイス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2152, + "TitleName": "聖少女先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2153, + "TitleName": "聖少女大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2154, + "TitleName": "聖少女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2155, + "TitleName": "RinLenGod", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2156, + "TitleName": "RinLenKing", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2157, + "TitleName": "RinLenMaster", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2158, + "TitleName": "レンかわいいよレン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2159, + "TitleName": "リンかわいいよリン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2160, + "TitleName": "S\u002B級バナナ", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2161, + "TitleName": "S\u002B級みかん", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2162, + "TitleName": "I LOVE 鏡音レン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2163, + "TitleName": "I LOVE 鏡音リン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2164, + "TitleName": "楽園の最高裁判長", + "UnlockRequirementJp": "『東方Project6』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2165, + "TitleName": "三途の水先案内人", + "UnlockRequirementJp": "『東方Project6』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2166, + "TitleName": "小さな百鬼夜行", + "UnlockRequirementJp": "『東方Project6』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2167, + "TitleName": "四季のフラワーマスター", + "UnlockRequirementJp": "『東方Project6』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2168, + "TitleName": "楽園の巫女", + "UnlockRequirementJp": "『東方Project6』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2169, + "TitleName": "初々しいスポイラー記者", + "UnlockRequirementJp": "『東方Project6』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2170, + "TitleName": "小さなスイートポイズン", + "UnlockRequirementJp": "『東方Project6』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2171, + "TitleName": "風神少女", + "UnlockRequirementJp": "『東方Project6』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2172, + "TitleName": "伝統の幻想ブン屋", + "UnlockRequirementJp": "『東方Project6』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2173, + "TitleName": "天下一チャレンジャー", + "UnlockRequirementJp": "対象曲を1回プレイ", + "UnlockRequirementEn": "Play a set song 1 times", + "UnlockType": 12 + }, + { + "Id": 2174, + "TitleName": "アメリカ勢", + "UnlockRequirementJp": "アメリカでプレイ", + "UnlockRequirementEn": "Played in America", + "UnlockType": 13 + }, + { + "Id": 2175, + "TitleName": "I love \u0022orbital\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2176, + "TitleName": "orbital master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2177, + "TitleName": "orbital king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2178, + "TitleName": "orbital god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2179, + "TitleName": "I love \u0022Change me\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2180, + "TitleName": "Change master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2181, + "TitleName": "Change king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2182, + "TitleName": "Change god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2183, + "TitleName": "I love \u0022フィフス・フォース~五色の閃き~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2184, + "TitleName": "五色先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2185, + "TitleName": "五色大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2186, + "TitleName": "五色神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2187, + "TitleName": "I love \u0022五次元式エチュード~妖魔との戦い~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2188, + "TitleName": "五次元先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2189, + "TitleName": "五次元大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2190, + "TitleName": "五次元神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2191, + "TitleName": "I love \u0022もしもの私\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2192, + "TitleName": "もしもの先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2193, + "TitleName": "もしもの王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2194, + "TitleName": "もしもの神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2195, + "TitleName": "I love \u0022My Voice is Dead.\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2196, + "TitleName": "My Voice is Master.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2197, + "TitleName": "My Voice is King.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2198, + "TitleName": "My Voice is God.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2199, + "TitleName": "I love \u0022QLWA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2200, + "TitleName": "QLWAMASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2201, + "TitleName": "QLWAKING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2202, + "TitleName": "QLWAGOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2203, + "TitleName": "I love \u0022SETSUNA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2204, + "TitleName": "SETSUNA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2205, + "TitleName": "SETSUNA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2206, + "TitleName": "SETSUNA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2207, + "TitleName": "I love \u0022TAKING OFF\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2208, + "TitleName": "TAKING OFF MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2209, + "TitleName": "TAKING OFF KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2210, + "TitleName": "TAKING OFF GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2211, + "TitleName": "I love \u0022VEGAS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2212, + "TitleName": "VEGAS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2213, + "TitleName": "VEGAS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2214, + "TitleName": "VEGAS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2215, + "TitleName": "I love \u0022DOTTED 8TH\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2216, + "TitleName": "DOTTED MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2217, + "TitleName": "DOTTED KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2218, + "TitleName": "DOTTED GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2219, + "TitleName": "I love \u0022TRIPLE3T\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2220, + "TitleName": "TRIPLE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2221, + "TitleName": "TRIPLE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2222, + "TitleName": "TRIPLE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2223, + "TitleName": "I love \u0022Satisfiction (Massive New Krew Remix)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2224, + "TitleName": "サティスリミ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2225, + "TitleName": "サティスリミ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2226, + "TitleName": "サティスリミ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2227, + "TitleName": "I love \u0022ドクター=ファンクビート\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2228, + "TitleName": "マスター=ファンクビート", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2229, + "TitleName": "キング=ファンクビート", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2230, + "TitleName": "ゴッド=ファンクビート", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2231, + "TitleName": "I love \u0022Groove Prayer -tpz Despair Remix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2232, + "TitleName": "絶望マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2233, + "TitleName": "絶望キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2234, + "TitleName": "絶望ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2235, + "TitleName": "フィフス・フォース", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2236, + "TitleName": "生真面目リーダー", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2237, + "TitleName": "完璧系女子", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2238, + "TitleName": "噂の美少女探偵", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2239, + "TitleName": "まっほー", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2240, + "TitleName": "正義のおちゃらけガール", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2241, + "TitleName": "超絶変形型メモカ管理お掃除ロボ", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2242, + "TitleName": "時空管理官", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2243, + "TitleName": "隊長さん", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2244, + "TitleName": "Nightmare", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2245, + "TitleName": "絶望", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2246, + "TitleName": "仮初の満足", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2247, + "TitleName": "落ち着きなさNo.1", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2248, + "TitleName": "\チーン/", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2249, + "TitleName": "アキナコメコメ", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2250, + "TitleName": "例の花", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2251, + "TitleName": "パニキ", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2252, + "TitleName": "I love t\u002Bpazolite", + "UnlockRequirementJp": "『t\u002Bpazolite(仮)』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2253, + "TitleName": "I AM EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2254, + "TitleName": "I LOVE EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2255, + "TitleName": "I BELIEVE EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2256, + "TitleName": "I LIKE EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2257, + "TitleName": "I FEEL EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2258, + "TitleName": "I ENJOY EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2259, + "TitleName": "I THINK EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2260, + "TitleName": "I KNOW EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2261, + "TitleName": "I HEAR EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2262, + "TitleName": "GC2最終スコアタ皇帝", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2263, + "TitleName": "GC2最終スコアタ王", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2264, + "TitleName": "GC2最終スコアタ大公", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2265, + "TitleName": "GC2最終スコアタ公爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2266, + "TitleName": "GC2最終スコアタ侯爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2267, + "TitleName": "GC2最終スコアタ伯爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2268, + "TitleName": "GC2最終スコアタ子爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2269, + "TitleName": "GC2最終スコアタ男爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2270, + "TitleName": "GC2最終スコアタ騎士", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2271, + "TitleName": "初PERFECT", + "UnlockRequirementJp": "PERFECTを1ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1 stages", + "UnlockType": 28 + }, + { + "Id": 2272, + "TitleName": "神・入門者", + "UnlockRequirementJp": "PERFECTを5ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 5 stages", + "UnlockType": 28 + }, + { + "Id": 2273, + "TitleName": "神・玖級", + "UnlockRequirementJp": "PERFECTを10ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 10 stages", + "UnlockType": 28 + }, + { + "Id": 2274, + "TitleName": "神・捌級", + "UnlockRequirementJp": "PERFECTを20ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 20 stages", + "UnlockType": 28 + }, + { + "Id": 2275, + "TitleName": "神・漆級", + "UnlockRequirementJp": "PERFECTを30ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 30 stages", + "UnlockType": 28 + }, + { + "Id": 2276, + "TitleName": "神・陸級", + "UnlockRequirementJp": "PERFECTを40ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 40 stages", + "UnlockType": 28 + }, + { + "Id": 2277, + "TitleName": "神・伍級", + "UnlockRequirementJp": "PERFECTを50ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 50 stages", + "UnlockType": 28 + }, + { + "Id": 2278, + "TitleName": "神・肆級", + "UnlockRequirementJp": "PERFECTを60ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 60 stages", + "UnlockType": 28 + }, + { + "Id": 2279, + "TitleName": "神・参級", + "UnlockRequirementJp": "PERFECTを70ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 70 stages", + "UnlockType": 28 + }, + { + "Id": 2280, + "TitleName": "神・弐級", + "UnlockRequirementJp": "PERFECTを80ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 80 stages", + "UnlockType": 28 + }, + { + "Id": 2281, + "TitleName": "神・壱級", + "UnlockRequirementJp": "PERFECTを90ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 90 stages", + "UnlockType": 28 + }, + { + "Id": 2282, + "TitleName": "神・初段", + "UnlockRequirementJp": "PERFECTを100ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 100 stages", + "UnlockType": 28 + }, + { + "Id": 2283, + "TitleName": "神・弐段", + "UnlockRequirementJp": "PERFECTを125ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 125 stages", + "UnlockType": 28 + }, + { + "Id": 2284, + "TitleName": "神・参段", + "UnlockRequirementJp": "PERFECTを150ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 150 stages", + "UnlockType": 28 + }, + { + "Id": 2285, + "TitleName": "神・肆段", + "UnlockRequirementJp": "PERFECTを175ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 175 stages", + "UnlockType": 28 + }, + { + "Id": 2286, + "TitleName": "神・伍段", + "UnlockRequirementJp": "PERFECTを200ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 200 stages", + "UnlockType": 28 + }, + { + "Id": 2287, + "TitleName": "神・陸段", + "UnlockRequirementJp": "PERFECTを225ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 225 stages", + "UnlockType": 28 + }, + { + "Id": 2288, + "TitleName": "神・漆段", + "UnlockRequirementJp": "PERFECTを250ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 250 stages", + "UnlockType": 28 + }, + { + "Id": 2289, + "TitleName": "神・捌段", + "UnlockRequirementJp": "PERFECTを275ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 275 stages", + "UnlockType": 28 + }, + { + "Id": 2290, + "TitleName": "神・玖段", + "UnlockRequirementJp": "PERFECTを300ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 300 stages", + "UnlockType": 28 + }, + { + "Id": 2291, + "TitleName": "神・拾段", + "UnlockRequirementJp": "PERFECTを325ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 325 stages", + "UnlockType": 28 + }, + { + "Id": 2292, + "TitleName": "神・拾壱段", + "UnlockRequirementJp": "PERFECTを350ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 350 stages", + "UnlockType": 28 + }, + { + "Id": 2293, + "TitleName": "神・拾弐段", + "UnlockRequirementJp": "PERFECTを375ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 375 stages", + "UnlockType": 28 + }, + { + "Id": 2294, + "TitleName": "神・拾参段", + "UnlockRequirementJp": "PERFECTを400ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 400 stages", + "UnlockType": 28 + }, + { + "Id": 2295, + "TitleName": "神・拾肆段", + "UnlockRequirementJp": "PERFECTを425ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 425 stages", + "UnlockType": 28 + }, + { + "Id": 2296, + "TitleName": "神・拾伍段", + "UnlockRequirementJp": "PERFECTを450ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 450 stages", + "UnlockType": 28 + }, + { + "Id": 2297, + "TitleName": "神・拾陸段", + "UnlockRequirementJp": "PERFECTを475ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 475 stages", + "UnlockType": 28 + }, + { + "Id": 2298, + "TitleName": "神・拾漆段", + "UnlockRequirementJp": "PERFECTを500ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 500 stages", + "UnlockType": 28 + }, + { + "Id": 2299, + "TitleName": "神・拾捌段", + "UnlockRequirementJp": "PERFECTを525ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 525 stages", + "UnlockType": 28 + }, + { + "Id": 2300, + "TitleName": "神・拾玖段", + "UnlockRequirementJp": "PERFECTを550ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 550 stages", + "UnlockType": 28 + }, + { + "Id": 2301, + "TitleName": "神・弐拾段", + "UnlockRequirementJp": "PERFECTを575ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 575 stages", + "UnlockType": 28 + }, + { + "Id": 2302, + "TitleName": "神・弐拾壱段", + "UnlockRequirementJp": "PERFECTを600ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 600 stages", + "UnlockType": 28 + }, + { + "Id": 2303, + "TitleName": "神・弐拾弐段", + "UnlockRequirementJp": "PERFECTを625ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 625 stages", + "UnlockType": 28 + }, + { + "Id": 2304, + "TitleName": "神・弐拾参段", + "UnlockRequirementJp": "PERFECTを650ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 650 stages", + "UnlockType": 28 + }, + { + "Id": 2305, + "TitleName": "神・弐拾肆段", + "UnlockRequirementJp": "PERFECTを675ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 675 stages", + "UnlockType": 28 + }, + { + "Id": 2306, + "TitleName": "神・弐拾伍段", + "UnlockRequirementJp": "PERFECTを700ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 700 stages", + "UnlockType": 28 + }, + { + "Id": 2307, + "TitleName": "神・弐拾陸段", + "UnlockRequirementJp": "PERFECTを725ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 725 stages", + "UnlockType": 28 + }, + { + "Id": 2308, + "TitleName": "神・弐拾漆段", + "UnlockRequirementJp": "PERFECTを750ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 750 stages", + "UnlockType": 28 + }, + { + "Id": 2309, + "TitleName": "神・弐拾捌段", + "UnlockRequirementJp": "PERFECTを775ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 775 stages", + "UnlockType": 28 + }, + { + "Id": 2310, + "TitleName": "神・弐拾玖段", + "UnlockRequirementJp": "PERFECTを800ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 800 stages", + "UnlockType": 28 + }, + { + "Id": 2311, + "TitleName": "神・参拾段", + "UnlockRequirementJp": "PERFECTを825ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 825 stages", + "UnlockType": 28 + }, + { + "Id": 2312, + "TitleName": "神・参拾壱段", + "UnlockRequirementJp": "PERFECTを850ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 850 stages", + "UnlockType": 28 + }, + { + "Id": 2313, + "TitleName": "神・参拾弐段", + "UnlockRequirementJp": "PERFECTを875ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 875 stages", + "UnlockType": 28 + }, + { + "Id": 2314, + "TitleName": "神・参拾参段", + "UnlockRequirementJp": "PERFECTを900ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 900 stages", + "UnlockType": 28 + }, + { + "Id": 2315, + "TitleName": "神・参拾肆段", + "UnlockRequirementJp": "PERFECTを925ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 925 stages", + "UnlockType": 28 + }, + { + "Id": 2316, + "TitleName": "神・参拾伍段", + "UnlockRequirementJp": "PERFECTを950ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 950 stages", + "UnlockType": 28 + }, + { + "Id": 2317, + "TitleName": "神・参拾陸段", + "UnlockRequirementJp": "PERFECTを975ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 975 stages", + "UnlockType": 28 + }, + { + "Id": 2318, + "TitleName": "神・参拾漆段", + "UnlockRequirementJp": "PERFECTを1000ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1000 stages", + "UnlockType": 28 + }, + { + "Id": 2319, + "TitleName": "神・参拾捌段", + "UnlockRequirementJp": "PERFECTを1025ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1025 stages", + "UnlockType": 28 + }, + { + "Id": 2320, + "TitleName": "神・参拾玖段", + "UnlockRequirementJp": "PERFECTを1050ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1050 stages", + "UnlockType": 28 + }, + { + "Id": 2321, + "TitleName": "神・肆拾段", + "UnlockRequirementJp": "PERFECTを1075ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1075 stages", + "UnlockType": 28 + }, + { + "Id": 2322, + "TitleName": "神・肆拾壱段", + "UnlockRequirementJp": "PERFECTを1100ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1100 stages", + "UnlockType": 28 + }, + { + "Id": 2323, + "TitleName": "神・肆拾弐段", + "UnlockRequirementJp": "PERFECTを1125ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1125 stages", + "UnlockType": 28 + }, + { + "Id": 2324, + "TitleName": "神・肆拾参段", + "UnlockRequirementJp": "PERFECTを1150ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1150 stages", + "UnlockType": 28 + }, + { + "Id": 2325, + "TitleName": "神・肆拾肆段", + "UnlockRequirementJp": "PERFECTを1175ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1175 stages", + "UnlockType": 28 + }, + { + "Id": 2326, + "TitleName": "神・肆拾伍段", + "UnlockRequirementJp": "PERFECTを1200ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1200 stages", + "UnlockType": 28 + }, + { + "Id": 2327, + "TitleName": "神・肆拾陸段", + "UnlockRequirementJp": "PERFECTを1225ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1225 stages", + "UnlockType": 28 + }, + { + "Id": 2328, + "TitleName": "神・肆拾漆段", + "UnlockRequirementJp": "PERFECTを1250ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1250 stages", + "UnlockType": 28 + }, + { + "Id": 2329, + "TitleName": "神・肆拾捌段", + "UnlockRequirementJp": "PERFECTを1275ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1275 stages", + "UnlockType": 28 + }, + { + "Id": 2330, + "TitleName": "神・肆拾玖段", + "UnlockRequirementJp": "PERFECTを1300ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1300 stages", + "UnlockType": 28 + }, + { + "Id": 2331, + "TitleName": "神・伍拾段", + "UnlockRequirementJp": "PERFECTを1325ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1325 stages", + "UnlockType": 28 + }, + { + "Id": 2332, + "TitleName": "神・伍拾壱段", + "UnlockRequirementJp": "PERFECTを1350ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1350 stages", + "UnlockType": 28 + }, + { + "Id": 2333, + "TitleName": "神・伍拾弐段", + "UnlockRequirementJp": "PERFECTを1375ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1375 stages", + "UnlockType": 28 + }, + { + "Id": 2334, + "TitleName": "神・伍拾参段", + "UnlockRequirementJp": "PERFECTを1400ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1400 stages", + "UnlockType": 28 + }, + { + "Id": 2335, + "TitleName": "神・伍拾肆段", + "UnlockRequirementJp": "PERFECTを1425ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1425 stages", + "UnlockType": 28 + }, + { + "Id": 2336, + "TitleName": "神・伍拾伍段", + "UnlockRequirementJp": "PERFECTを1450ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1450 stages", + "UnlockType": 28 + }, + { + "Id": 2337, + "TitleName": "神・伍拾陸段", + "UnlockRequirementJp": "PERFECTを1475ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1475 stages", + "UnlockType": 28 + }, + { + "Id": 2338, + "TitleName": "神・伍拾漆段", + "UnlockRequirementJp": "PERFECTを1500ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1500 stages", + "UnlockType": 28 + }, + { + "Id": 2339, + "TitleName": "意気揚々", + "UnlockRequirementJp": "オンライン対戦で1回勝利", + "UnlockRequirementEn": "Win 1 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2340, + "TitleName": "七転八起", + "UnlockRequirementJp": "オンライン対戦で10回勝利", + "UnlockRequirementEn": "Win 10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2341, + "TitleName": "起死回生", + "UnlockRequirementJp": "オンライン対戦で25回勝利", + "UnlockRequirementEn": "Win 25 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2342, + "TitleName": "大胆不敵", + "UnlockRequirementJp": "オンライン対戦で50回勝利", + "UnlockRequirementEn": "Win 50 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2343, + "TitleName": "疾風怒濤", + "UnlockRequirementJp": "オンライン対戦で75回勝利", + "UnlockRequirementEn": "Win 75 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2344, + "TitleName": "百戦錬磨", + "UnlockRequirementJp": "オンライン対戦で100回勝利", + "UnlockRequirementEn": "Win 100 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2345, + "TitleName": "風林火山", + "UnlockRequirementJp": "オンライン対戦で200回勝利", + "UnlockRequirementEn": "Win 200 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2346, + "TitleName": "鏡花水月", + "UnlockRequirementJp": "オンライン対戦で300回勝利", + "UnlockRequirementEn": "Win 300 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2347, + "TitleName": "猪突猛進", + "UnlockRequirementJp": "オンライン対戦で400回勝利", + "UnlockRequirementEn": "Win 400 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2348, + "TitleName": "獅子奮迅", + "UnlockRequirementJp": "オンライン対戦で500回勝利", + "UnlockRequirementEn": "Win 500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2349, + "TitleName": "天衣無縫", + "UnlockRequirementJp": "オンライン対戦で600回勝利", + "UnlockRequirementEn": "Win 600 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2350, + "TitleName": "質実剛健", + "UnlockRequirementJp": "オンライン対戦で700回勝利", + "UnlockRequirementEn": "Win 700 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2351, + "TitleName": "一世風靡", + "UnlockRequirementJp": "オンライン対戦で800回勝利", + "UnlockRequirementEn": "Win 800 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2352, + "TitleName": "威風堂堂", + "UnlockRequirementJp": "オンライン対戦で900回勝利", + "UnlockRequirementEn": "Win 900 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2353, + "TitleName": "一騎当千", + "UnlockRequirementJp": "オンライン対戦で1000回勝利", + "UnlockRequirementEn": "Win 1000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2354, + "TitleName": "神出鬼没", + "UnlockRequirementJp": "オンライン対戦で1500回勝利", + "UnlockRequirementEn": "Win 1500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2355, + "TitleName": "乾坤一擲", + "UnlockRequirementJp": "オンライン対戦で2000回勝利", + "UnlockRequirementEn": "Win 2000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2356, + "TitleName": "虎視眈々", + "UnlockRequirementJp": "オンライン対戦で2500回勝利", + "UnlockRequirementEn": "Win 2500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2357, + "TitleName": "天真爛漫", + "UnlockRequirementJp": "オンライン対戦で3000回勝利", + "UnlockRequirementEn": "Win 3000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2358, + "TitleName": "臥竜鳳雛", + "UnlockRequirementJp": "オンライン対戦で3500回勝利", + "UnlockRequirementEn": "Win 3500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2359, + "TitleName": "一刀両断", + "UnlockRequirementJp": "オンライン対戦で4000回勝利", + "UnlockRequirementEn": "Win 4000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2360, + "TitleName": "初志貫徹", + "UnlockRequirementJp": "オンライン対戦で4500回勝利", + "UnlockRequirementEn": "Win 4500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2361, + "TitleName": "不撓不屈", + "UnlockRequirementJp": "オンライン対戦で5000回勝利", + "UnlockRequirementEn": "Win 5000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2362, + "TitleName": "多芸多才", + "UnlockRequirementJp": "オンライン対戦で5500回勝利", + "UnlockRequirementEn": "Win 5500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2363, + "TitleName": "臥薪嘗胆", + "UnlockRequirementJp": "オンライン対戦で6000回勝利", + "UnlockRequirementEn": "Win 6000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2364, + "TitleName": "文武両道", + "UnlockRequirementJp": "オンライン対戦で6500回勝利", + "UnlockRequirementEn": "Win 6500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2365, + "TitleName": "勇猛果敢", + "UnlockRequirementJp": "オンライン対戦で7000回勝利", + "UnlockRequirementEn": "Win 7000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2366, + "TitleName": "無我夢中", + "UnlockRequirementJp": "オンライン対戦で7500回勝利", + "UnlockRequirementEn": "Win 7500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2367, + "TitleName": "波瀾万丈", + "UnlockRequirementJp": "オンライン対戦で8000回勝利", + "UnlockRequirementEn": "Win 8000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2368, + "TitleName": "英雄豪傑", + "UnlockRequirementJp": "オンライン対戦で8500回勝利", + "UnlockRequirementEn": "Win 8500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2369, + "TitleName": "唯我独尊", + "UnlockRequirementJp": "オンライン対戦で9000回勝利", + "UnlockRequirementEn": "Win 9000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2370, + "TitleName": "森羅万象", + "UnlockRequirementJp": "オンライン対戦で9500回勝利", + "UnlockRequirementEn": "Win 9500 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2371, + "TitleName": "天下無双", + "UnlockRequirementJp": "オンライン対戦で10000回勝利", + "UnlockRequirementEn": "Win 10000 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2372, + "TitleName": "ジンギスカン", + "UnlockRequirementJp": "オンライン対戦で北海道の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Hokkaido\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2373, + "TitleName": "りんご", + "UnlockRequirementJp": "オンライン対戦で青森県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Aomori\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2374, + "TitleName": "わんこそば", + "UnlockRequirementJp": "オンライン対戦で岩手県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Iwate\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2375, + "TitleName": "牛タン", + "UnlockRequirementJp": "オンライン対戦で宮城県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Miyagi\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2376, + "TitleName": "きりたんぽ", + "UnlockRequirementJp": "オンライン対戦で秋田県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Akita\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2377, + "TitleName": "さくらんぼ", + "UnlockRequirementJp": "オンライン対戦で山形県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Yamagata\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2378, + "TitleName": "喜多方ラーメン", + "UnlockRequirementJp": "オンライン対戦で福島県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Fukushima\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2379, + "TitleName": "納豆", + "UnlockRequirementJp": "オンライン対戦で茨城県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Ibaraki\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2380, + "TitleName": "餃子", + "UnlockRequirementJp": "オンライン対戦で栃木県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Tochigi\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2381, + "TitleName": "焼き饅頭", + "UnlockRequirementJp": "オンライン対戦で群馬県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Gunma\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2382, + "TitleName": "焼きとん", + "UnlockRequirementJp": "オンライン対戦で埼玉県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Saitama\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2383, + "TitleName": "落花生", + "UnlockRequirementJp": "オンライン対戦で千葉県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Chiba\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2384, + "TitleName": "もんじゃ焼き", + "UnlockRequirementJp": "オンライン対戦で東京都の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Tokyo\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2385, + "TitleName": "シュウマイ", + "UnlockRequirementJp": "オンライン対戦で神奈川県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Kanagawa\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2386, + "TitleName": "ブドウ", + "UnlockRequirementJp": "オンライン対戦で山梨県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Yamanashi\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2387, + "TitleName": "信州そば", + "UnlockRequirementJp": "オンライン対戦で長野県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Nagano\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2388, + "TitleName": "のっぺい汁", + "UnlockRequirementJp": "オンライン対戦で新潟県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Niigata\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2389, + "TitleName": "ホタルイカ", + "UnlockRequirementJp": "オンライン対戦で富山県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Toyama\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2390, + "TitleName": "治部煮", + "UnlockRequirementJp": "オンライン対戦で石川県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Ishikawa\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2391, + "TitleName": "越前ガニ", + "UnlockRequirementJp": "オンライン対戦で福井県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Fukui\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2392, + "TitleName": "うなぎ", + "UnlockRequirementJp": "オンライン対戦で静岡県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Shizuoka\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2393, + "TitleName": "味噌かつ", + "UnlockRequirementJp": "オンライン対戦で愛知県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Aichi\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2394, + "TitleName": "五平餅", + "UnlockRequirementJp": "オンライン対戦で岐阜県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Gifu\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2395, + "TitleName": "伊勢エビ", + "UnlockRequirementJp": "オンライン対戦で三重県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Mie\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2396, + "TitleName": "ふな寿司", + "UnlockRequirementJp": "オンライン対戦で滋賀県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Shiga\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2397, + "TitleName": "京野菜", + "UnlockRequirementJp": "オンライン対戦で京都府の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Kyoto\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2398, + "TitleName": "たこ焼き", + "UnlockRequirementJp": "オンライン対戦で大阪府の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Osaka\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2399, + "TitleName": "明石焼き", + "UnlockRequirementJp": "オンライン対戦で兵庫県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Hyogo\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2400, + "TitleName": "柿の葉寿司", + "UnlockRequirementJp": "オンライン対戦で奈良県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Nara\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2401, + "TitleName": "梅干", + "UnlockRequirementJp": "オンライン対戦で和歌山県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Wakayama\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2402, + "TitleName": "吉備団子", + "UnlockRequirementJp": "オンライン対戦で岡山県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Okayama\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2403, + "TitleName": "お好み焼き", + "UnlockRequirementJp": "オンライン対戦で広島県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Hiroshima\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2404, + "TitleName": "二十世紀梨", + "UnlockRequirementJp": "オンライン対戦で鳥取県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Tottori\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2405, + "TitleName": "出雲そば", + "UnlockRequirementJp": "オンライン対戦で島根県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Shimane\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2406, + "TitleName": "フグ刺し", + "UnlockRequirementJp": "オンライン対戦で山口県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Yamaguchi\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2407, + "TitleName": "そば米雑炊", + "UnlockRequirementJp": "オンライン対戦で徳島県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Tokushima\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2408, + "TitleName": "讃岐うどん", + "UnlockRequirementJp": "オンライン対戦で香川県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Kagawa\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2409, + "TitleName": "温州みかん", + "UnlockRequirementJp": "オンライン対戦で愛媛県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Ehime\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2410, + "TitleName": "鰹のたたき", + "UnlockRequirementJp": "オンライン対戦で高知県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Kochi\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2411, + "TitleName": "辛子明太子", + "UnlockRequirementJp": "オンライン対戦で福岡県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Fukuoka\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2412, + "TitleName": "むつごろうの蒲焼", + "UnlockRequirementJp": "オンライン対戦で佐賀県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Saga\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2413, + "TitleName": "ちゃんぽん", + "UnlockRequirementJp": "オンライン対戦で長崎県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Nagasaki\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2414, + "TitleName": "馬刺し", + "UnlockRequirementJp": "オンライン対戦で熊本県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Kumamoto\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2415, + "TitleName": "とり天", + "UnlockRequirementJp": "オンライン対戦で大分県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Oita\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2416, + "TitleName": "チキン南蛮", + "UnlockRequirementJp": "オンライン対戦で宮崎県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Miyazaki\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2417, + "TitleName": "さつま揚げ", + "UnlockRequirementJp": "オンライン対戦で鹿児島県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Kagoshima\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2418, + "TitleName": "ゴーヤチャンプルー", + "UnlockRequirementJp": "オンライン対戦で沖縄県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Okinawa\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2419, + "TitleName": "点心", + "UnlockRequirementJp": "オンライン対戦で香港の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Hong Kong\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2420, + "TitleName": "サムギョプサル", + "UnlockRequirementJp": "オンライン対戦で韓国の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in South Korea\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2421, + "TitleName": "チキンライス", + "UnlockRequirementJp": "オンライン対戦でシンガポールの\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Singapore\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2422, + "TitleName": "担仔麺", + "UnlockRequirementJp": "オンライン対戦で台湾の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Taiwan\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2423, + "TitleName": "トムヤムクン", + "UnlockRequirementJp": "オンライン対戦でタイの\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Thailand\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2424, + "TitleName": "ミーゴレン", + "UnlockRequirementJp": "オンライン対戦でマレーシアの\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Malaysia\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2425, + "TitleName": "ナシゴレン", + "UnlockRequirementJp": "オンライン対戦でインドネシアの\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Indonesia\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2426, + "TitleName": "ハンバーガー", + "UnlockRequirementJp": "オンライン対戦でアメリカの\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in America\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2427, + "TitleName": "NORTH OCEAN", + "UnlockRequirementJp": "オンライン対戦で北海道の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Hokkaido\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2428, + "TitleName": "BLUE FOREST", + "UnlockRequirementJp": "オンライン対戦で青森県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Aomori\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2429, + "TitleName": "ROCK FIST", + "UnlockRequirementJp": "オンライン対戦で岩手県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Iwate\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2430, + "TitleName": "SHRINE CASTLE", + "UnlockRequirementJp": "オンライン対戦で宮城県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Miyagi\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2431, + "TitleName": "AUTUMN FIELD", + "UnlockRequirementJp": "オンライン対戦で秋田県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Akita\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2432, + "TitleName": "MOUNTAIN FORM", + "UnlockRequirementJp": "オンライン対戦で山形県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Yamagata\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2433, + "TitleName": "HAPPINESS ISLAND", + "UnlockRequirementJp": "オンライン対戦で福島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Fukushima\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2434, + "TitleName": "BRIER CASTLE", + "UnlockRequirementJp": "オンライン対戦で茨城県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Ibaraki\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2435, + "TitleName": "HORSE CHESTNUT", + "UnlockRequirementJp": "オンライン対戦で栃木県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Tochigi\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2436, + "TitleName": "HERD HORSE", + "UnlockRequirementJp": "オンライン対戦で群馬県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Gunma\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2437, + "TitleName": "COLOR BALL", + "UnlockRequirementJp": "オンライン対戦で埼玉県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Saitama\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2438, + "TitleName": "THOUSAND LEAVES", + "UnlockRequirementJp": "オンライン対戦で千葉県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Chiba\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2439, + "TitleName": "EAST CAPITAL", + "UnlockRequirementJp": "オンライン対戦で東京都の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Tokyo\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2440, + "TitleName": "GOLDEN RIVER", + "UnlockRequirementJp": "オンライン対戦で神奈川県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Kanagawa\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2441, + "TitleName": "MOUNTAIN PEAR", + "UnlockRequirementJp": "オンライン対戦で山梨県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Yamanashi\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2442, + "TitleName": "LONG FIELD", + "UnlockRequirementJp": "オンライン対戦で長野県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Nagano\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2443, + "TitleName": "NEW TIDELAND", + "UnlockRequirementJp": "オンライン対戦で新潟県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Niigata\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2444, + "TitleName": "WEALTH MOUNTAIN", + "UnlockRequirementJp": "オンライン対戦で富山県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Toyama\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2445, + "TitleName": "STONE RIVER", + "UnlockRequirementJp": "オンライン対戦で石川県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Ishikawa\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2446, + "TitleName": "HAPPINESS WELL", + "UnlockRequirementJp": "オンライン対戦で福井県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Fukui\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2447, + "TitleName": "QUIET HILL", + "UnlockRequirementJp": "オンライン対戦で静岡県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Shizuoka\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2448, + "TitleName": "LOVE KNOWLEDGE", + "UnlockRequirementJp": "オンライン対戦で愛知県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Aichi\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2449, + "TitleName": "CROSSROAD HILL", + "UnlockRequirementJp": "オンライン対戦で岐阜県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Gifu\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2450, + "TitleName": "THREEFOLD", + "UnlockRequirementJp": "オンライン対戦で三重県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Mie\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2451, + "TitleName": "NOURISHMENT CELEBRATE", + "UnlockRequirementJp": "オンライン対戦で滋賀県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Shiga\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2452, + "TitleName": "CAPITAL CAPITAL", + "UnlockRequirementJp": "オンライン対戦で京都府の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Kyoto\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2453, + "TitleName": "BIG SLOPE", + "UnlockRequirementJp": "オンライン対戦で大阪府の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Osaka\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2454, + "TitleName": "SOLDIER MAGAZINE", + "UnlockRequirementJp": "オンライン対戦で兵庫県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Hyogo\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2455, + "TitleName": "LEVEL", + "UnlockRequirementJp": "オンライン対戦で奈良県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Nara\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2456, + "TitleName": "POETRY MOUNTAIN", + "UnlockRequirementJp": "オンライン対戦で和歌山県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Wakayama\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2457, + "TitleName": "HILL MOUNTAIN", + "UnlockRequirementJp": "オンライン対戦で岡山県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Okayama\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2458, + "TitleName": "LARGE ISLAND", + "UnlockRequirementJp": "オンライン対戦で広島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Hiroshima\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2459, + "TitleName": "BIRD HUNTER", + "UnlockRequirementJp": "オンライン対戦で鳥取県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Tottori\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2460, + "TitleName": "ISLAND ROOT", + "UnlockRequirementJp": "オンライン対戦で島根県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Shimane\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2461, + "TitleName": "MOUNTAIN MOUTH", + "UnlockRequirementJp": "オンライン対戦で山口県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Yamaguchi\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2462, + "TitleName": "VIRTUE ISLAND", + "UnlockRequirementJp": "オンライン対戦で徳島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Tokushima\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2463, + "TitleName": "SMELL RIVER", + "UnlockRequirementJp": "オンライン対戦で香川県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Kagawa\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2464, + "TitleName": "ANGELIC LADY", + "UnlockRequirementJp": "オンライン対戦で愛媛県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Ehime\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2465, + "TitleName": "EXPERT KNOWLEDGE", + "UnlockRequirementJp": "オンライン対戦で高知県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Kochi\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2466, + "TitleName": "HAPPINESS HILL", + "UnlockRequirementJp": "オンライン対戦で福岡県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Fukuoka\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2467, + "TitleName": "CAPTAIN CELEBRATE", + "UnlockRequirementJp": "オンライン対戦で佐賀県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Saga\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2468, + "TitleName": "LONG CAPE", + "UnlockRequirementJp": "オンライン対戦で長崎県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Nagasaki\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2469, + "TitleName": "BEAR BOOK", + "UnlockRequirementJp": "オンライン対戦で熊本県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Kumamoto\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2470, + "TitleName": "BIG MINUTE", + "UnlockRequirementJp": "オンライン対戦で大分県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Oita\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2471, + "TitleName": "SHRINE CAPE", + "UnlockRequirementJp": "オンライン対戦で宮崎県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Miyazaki\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2472, + "TitleName": "FAWN ISLAND", + "UnlockRequirementJp": "オンライン対戦で鹿児島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Kagoshima\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2473, + "TitleName": "OFFING ROPE", + "UnlockRequirementJp": "オンライン対戦で沖縄県の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Okinawa\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2474, + "TitleName": "BOOK NAVY", + "UnlockRequirementJp": "オンライン対戦で香港の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Hong Kong\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2475, + "TitleName": "SAUCE GORILLA", + "UnlockRequirementJp": "オンライン対戦で韓国の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in South Korea\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2476, + "TitleName": "SINGER POLE", + "UnlockRequirementJp": "オンライン対戦でシンガポールの\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Singapore\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2477, + "TitleName": "BREAM ONE", + "UnlockRequirementJp": "オンライン対戦で台湾の\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Taiwan\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2478, + "TitleName": "BREAM ISLAND", + "UnlockRequirementJp": "オンライン対戦でタイの\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Thailand\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2479, + "TitleName": "MAGIC TRAIN", + "UnlockRequirementJp": "オンライン対戦でマレーシアの\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Malaysia\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2480, + "TitleName": "INDIGO RESTAURANT", + "UnlockRequirementJp": "オンライン対戦でインドネシアの\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Indonesia\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2481, + "TitleName": "CANDY SCIENCE", + "UnlockRequirementJp": "オンライン対戦でアメリカの\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in America\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2482, + "TitleName": "腹ぺこ", + "UnlockRequirementJp": "オンライン対戦で3都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 3 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2483, + "TitleName": "腹五分", + "UnlockRequirementJp": "オンライン対戦で5都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 5 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2484, + "TitleName": "腹八分", + "UnlockRequirementJp": "オンライン対戦で10都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 10 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2485, + "TitleName": "腹一杯", + "UnlockRequirementJp": "オンライン対戦で15都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 15 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2486, + "TitleName": "グルメ通", + "UnlockRequirementJp": "オンライン対戦で20都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 20 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2487, + "TitleName": "グルメマニア", + "UnlockRequirementJp": "オンライン対戦で25都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 25 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2488, + "TitleName": "グルメマスター", + "UnlockRequirementJp": "オンライン対戦で30都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 30 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2489, + "TitleName": "グルメキング", + "UnlockRequirementJp": "オンライン対戦で35都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 35 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2490, + "TitleName": "グルメゴッド", + "UnlockRequirementJp": "オンライン対戦で40都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 40 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2491, + "TitleName": "全都道府県グルメ完食", + "UnlockRequirementJp": "オンライン対戦で47都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with players based\nin 47 different prefectures\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2492, + "TitleName": "LINK", + "UnlockRequirementJp": "オンライン対戦で3都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 3 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2493, + "TitleName": "LINK LINK", + "UnlockRequirementJp": "オンライン対戦で5都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 5 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2494, + "TitleName": "LINK FEVER", + "UnlockRequirementJp": "オンライン対戦で10都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 10 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2495, + "TitleName": "LINK TRANCE", + "UnlockRequirementJp": "オンライン対戦で15都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 15 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2496, + "TitleName": "LINK FESTIVAL", + "UnlockRequirementJp": "オンライン対戦で20都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 20 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2497, + "TitleName": "LINK CARNIVAL", + "UnlockRequirementJp": "オンライン対戦で25都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 25 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2498, + "TitleName": "LINK MASTER", + "UnlockRequirementJp": "オンライン対戦で30都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 30 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2499, + "TitleName": "LINK KING", + "UnlockRequirementJp": "オンライン対戦で35都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 35 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2500, + "TitleName": "LINK GOD", + "UnlockRequirementJp": "オンライン対戦で40都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 40 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2501, + "TitleName": "LINK PERFECT", + "UnlockRequirementJp": "オンライン対戦で47都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEn": "Play with players based\nin 47 different prefectures 10 times\nper prefecture in Online Match", + "UnlockType": 29 + }, + { + "Id": 2502, + "TitleName": "MERCURY", + "UnlockRequirementJp": "トロフィーを10個獲得", + "UnlockRequirementEn": "Get 10 trophies", + "UnlockType": 30 + }, + { + "Id": 2503, + "TitleName": "VENUS", + "UnlockRequirementJp": "トロフィーを50個獲得", + "UnlockRequirementEn": "Get 50 trophies", + "UnlockType": 30 + }, + { + "Id": 2504, + "TitleName": "EARTH", + "UnlockRequirementJp": "トロフィーを90個獲得", + "UnlockRequirementEn": "Get 90 trophies", + "UnlockType": 30 + }, + { + "Id": 2505, + "TitleName": "MARS", + "UnlockRequirementJp": "トロフィーを125個獲得", + "UnlockRequirementEn": "Get 125 trophies", + "UnlockType": 30 + }, + { + "Id": 2506, + "TitleName": "JUPITER", + "UnlockRequirementJp": "トロフィーを200個獲得", + "UnlockRequirementEn": "Get 200 trophies", + "UnlockType": 30 + }, + { + "Id": 2507, + "TitleName": "SATURN", + "UnlockRequirementJp": "トロフィーを300個獲得", + "UnlockRequirementEn": "Get 300 trophies", + "UnlockType": 30 + }, + { + "Id": 2508, + "TitleName": "URANUS", + "UnlockRequirementJp": "トロフィーを350個獲得", + "UnlockRequirementEn": "Get 350 trophies", + "UnlockType": 30 + }, + { + "Id": 2509, + "TitleName": "NEPTUNE", + "UnlockRequirementJp": "トロフィーを400個獲得", + "UnlockRequirementEn": "Get 400 trophies", + "UnlockType": 30 + }, + { + "Id": 2510, + "TitleName": "PLUTO", + "UnlockRequirementJp": "トロフィーを450個獲得", + "UnlockRequirementEn": "Get 450 trophies", + "UnlockType": 30 + }, + { + "Id": 2511, + "TitleName": "SUN", + "UnlockRequirementJp": "トロフィーを500個獲得", + "UnlockRequirementEn": "Get 500 trophies", + "UnlockType": 30 + }, + { + "Id": 2512, + "TitleName": "I love \u0022おつかれサマー!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2513, + "TitleName": "おつかれマスター!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2514, + "TitleName": "おつかれキング!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2515, + "TitleName": "おつかれゴッド!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2516, + "TitleName": "I love \u0022ANTI-HERO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2517, + "TitleName": "ANTI-MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2518, + "TitleName": "ANTI-KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2519, + "TitleName": "ANTI-GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2520, + "TitleName": "I love \u0022ズッ友\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2521, + "TitleName": "ズッ友先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2522, + "TitleName": "ズッ友大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2523, + "TitleName": "ズッ友神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2524, + "TitleName": "I love \u0022STAKEHOLDER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2525, + "TitleName": "STAKEHOLDER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2526, + "TitleName": "STAKEHOLDER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2527, + "TitleName": "STAKEHOLDER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2528, + "TitleName": "I love \u0022トキノワ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2529, + "TitleName": "トキノワ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2530, + "TitleName": "トキノワ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2531, + "TitleName": "トキノワ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2532, + "TitleName": "I love \u0022ちょちょちょ!ゆるゆり☆かぷりっちょ!!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2533, + "TitleName": "わぁい先生大好き", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2534, + "TitleName": "わぁい王様大好き", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2535, + "TitleName": "わぁい神様大好き", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2536, + "TitleName": "I love \u0022細い線\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2537, + "TitleName": "細い先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2538, + "TitleName": "細い大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2539, + "TitleName": "細い神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2540, + "TitleName": "I love \u0022月に叢雲華に風\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2541, + "TitleName": "叢雲先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2542, + "TitleName": "叢雲大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2543, + "TitleName": "叢雲神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2544, + "TitleName": "I love \u0022明星ロケット\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2545, + "TitleName": "明星先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2546, + "TitleName": "明星大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2547, + "TitleName": "明星神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2548, + "TitleName": "I love \u0022色は匂えど 散りぬるを\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2549, + "TitleName": "神々が恋した先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2550, + "TitleName": "神々が恋した大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2551, + "TitleName": "神々が恋した神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2552, + "TitleName": "I love \u0022Redial\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2553, + "TitleName": "Redial Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2554, + "TitleName": "Redial King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2555, + "TitleName": "Redial God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2556, + "TitleName": "I love \u0022だんだん早くなる\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2557, + "TitleName": "だんだん早くなる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2558, + "TitleName": "だんだん早くなる大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2559, + "TitleName": "だんだん早くなる神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2560, + "TitleName": "I love \u0022ウミユリ海底譚\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2561, + "TitleName": "ウミユリ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2562, + "TitleName": "ウミユリ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2563, + "TitleName": "ウミユリ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2564, + "TitleName": "I love \u0022StargazeR\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2565, + "TitleName": "StargazeR MasteR", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2566, + "TitleName": "StargazeR KinG", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2567, + "TitleName": "StargazeR GoD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2568, + "TitleName": "I love \u0022conflict\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 2569, + "TitleName": "conflict master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2570, + "TitleName": "conflict king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2571, + "TitleName": "conflict god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 2572, + "TitleName": "I love \u0022LINK LINK FEVER!!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2573, + "TitleName": "LINK LINK MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2574, + "TitleName": "LINK LINK KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2575, + "TitleName": "LINK LINK GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2576, + "TitleName": "I love \u0022Shiva\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2577, + "TitleName": "破壊先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2578, + "TitleName": "破壊王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2579, + "TitleName": "破壊神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2580, + "TitleName": "I love \u0022Flyaway\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2581, + "TitleName": "Fly Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2582, + "TitleName": "Fly King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2583, + "TitleName": "Fly God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2584, + "TitleName": "I love \u0022座和々\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2585, + "TitleName": "ざわざわ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2586, + "TitleName": "ざわざわ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2587, + "TitleName": "ざわざわ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2588, + "TitleName": "I love \u0022Negative Return\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2589, + "TitleName": "Negative Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2590, + "TitleName": "Negative King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2591, + "TitleName": "Negative God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2592, + "TitleName": "I love \u0022Under The Moon\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2593, + "TitleName": "Master of Moon", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2594, + "TitleName": "King of Moon", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2595, + "TitleName": "God of Moon", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2596, + "TitleName": "I love \u0022Fun-House\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2597, + "TitleName": "Master-House", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2598, + "TitleName": "King-House", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2599, + "TitleName": "God-House", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2600, + "TitleName": "I love \u0022Freedom\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2601, + "TitleName": "Freedom Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2602, + "TitleName": "Freedom King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2603, + "TitleName": "Freedom God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2604, + "TitleName": "I love \u0022アルカノイドvsインベーダー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2605, + "TitleName": "アルカノイドvsインベーダーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2606, + "TitleName": "アルカノイドvsインベーダーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2607, + "TitleName": "アルカノイドvsインベーダーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2608, + "TitleName": "I love \u0022Neptune Diving\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2609, + "TitleName": "海先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2610, + "TitleName": "海大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2611, + "TitleName": "海神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2612, + "TitleName": "I love \u0022Departure\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2613, + "TitleName": "Departure Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2614, + "TitleName": "Departure King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2615, + "TitleName": "Departure God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2616, + "TitleName": "I love \u0022Walking Through The Towers\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2617, + "TitleName": "Tower Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2618, + "TitleName": "Tower King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2619, + "TitleName": "Tower God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2620, + "TitleName": "I love \u0022The Orb Festival\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2621, + "TitleName": "Orb Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2622, + "TitleName": "Orb King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2623, + "TitleName": "Orb God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2624, + "TitleName": "I love \u0022Dragon\u0027s Den\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2625, + "TitleName": "Dragon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2626, + "TitleName": "Dragon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2627, + "TitleName": "Dragon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2628, + "TitleName": "でんぱ神", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2629, + "TitleName": "マイナスからのスタート 舐めんな!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2630, + "TitleName": "萌えキュンソングを世界にお届け!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2631, + "TitleName": "歌って踊れるゲーマーアイドル", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2632, + "TitleName": "2.5次元伝説!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2633, + "TitleName": "永遠の魔法少女未満", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2634, + "TitleName": "ハイテンションA-POPガール", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2635, + "TitleName": "金色の異端児", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント超達成賞", + "UnlockRequirementEn": "Event Ultra Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2636, + "TitleName": "踊ってみたら七変化!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2637, + "TitleName": "I love でんぱ組.inc", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2638, + "TitleName": "第二回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第二回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEn": "第二回天下一音ゲ祭全国頂上決戦進出", + "UnlockType": 12 + }, + { + "Id": 2639, + "TitleName": "第二回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第二回天下一音ゲ祭優勝", + "UnlockRequirementEn": "第二回天下一音ゲ祭優勝", + "UnlockType": 12 + }, + { + "Id": 2640, + "TitleName": "I love \u0022W.W.D\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2641, + "TitleName": "W.W.M", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2642, + "TitleName": "W.W.K", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2643, + "TitleName": "W.W.G", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2644, + "TitleName": "I love \u0022Disco Descent/Mausoleum Mash\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2645, + "TitleName": "NecroMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2646, + "TitleName": "NecroKing", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2647, + "TitleName": "NecroGod", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2648, + "TitleName": "I love \u0022Fungal Funk/Portabellohead\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2649, + "TitleName": "MushroomMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2650, + "TitleName": "MushroomKing", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2651, + "TitleName": "MushroomGod", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2652, + "TitleName": "I love \u0022だんがんろんぱ!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2653, + "TitleName": "だんがんせんせい", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2654, + "TitleName": "だんがんだいおう", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2655, + "TitleName": "だんがんしん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2656, + "TitleName": "I love \u0022議論 -HEAT UP-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2657, + "TitleName": "議論先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2658, + "TitleName": "議論大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2659, + "TitleName": "議論神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2660, + "TitleName": "I love \u002217K\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2661, + "TitleName": "17K MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2662, + "TitleName": "17K KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2663, + "TitleName": "17K GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2664, + "TitleName": "I love \u0022Smash a mirror\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2665, + "TitleName": "粉々先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2666, + "TitleName": "粉々大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2667, + "TitleName": "粉々神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2668, + "TitleName": "I love \u0022tiny tales continue\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2669, + "TitleName": "tiny tales master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2670, + "TitleName": "tiny tales king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2671, + "TitleName": "tiny tales god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2672, + "TitleName": "I love \u0022カリソメ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2673, + "TitleName": "カリソメマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2674, + "TitleName": "カリソメキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2675, + "TitleName": "カリソメゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2676, + "TitleName": "I love \u0022beyond the star line\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2677, + "TitleName": "リザレクションマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2678, + "TitleName": "リザレクションキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2679, + "TitleName": "リザレクションゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2680, + "TitleName": "I love \u0022未確認幻想コースター\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2681, + "TitleName": "未確認幻想飛行先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2682, + "TitleName": "未確認幻想飛行大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2683, + "TitleName": "未確認幻想飛行神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2684, + "TitleName": "I love \u0022カミノヒ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2685, + "TitleName": "核融合先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2686, + "TitleName": "核融合大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2687, + "TitleName": "核融合神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2688, + "TitleName": "I love \u0022飴と鎖\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2689, + "TitleName": "飴と鎖先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2690, + "TitleName": "飴と鎖大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2691, + "TitleName": "飴と鎖神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2692, + "TitleName": "I love \u0022FEEL MY BEAT!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2693, + "TitleName": "太鼓の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2694, + "TitleName": "太鼓の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2695, + "TitleName": "太鼓の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2696, + "TitleName": "I love \u0022そして誰もいなくなった\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2697, + "TitleName": "妹先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2698, + "TitleName": "妹大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2699, + "TitleName": "妹様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2700, + "TitleName": "The NecroDancer", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2701, + "TitleName": "Death Metal", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2702, + "TitleName": "Deep Blues", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2703, + "TitleName": "King Conga", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2704, + "TitleName": "歌うショップキーパー", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2705, + "TitleName": "超高校級の「ギャル」", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2706, + "TitleName": "踊る骸骨", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2707, + "TitleName": "希望ヶ峰学園の学園長", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント超達成賞", + "UnlockRequirementEn": "Event Ultra Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2708, + "TitleName": "リズムにノった冒険者", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2709, + "TitleName": "超高校級の「幸運」", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2710, + "TitleName": "「プリスティンビート」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2711, + "TitleName": "正体不明「恐怖の虹色UFO襲来」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2712, + "TitleName": "「サブタレイニアンローズ」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2713, + "TitleName": "「リザレクション」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2714, + "TitleName": "魔砲「ファイナルマスタースパーク」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2715, + "TitleName": "「サブタレイニアンサン」", + "UnlockRequirementJp": "『東方響宴夢』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2716, + "TitleName": "メイド秘技「殺人ドール」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2717, + "TitleName": "大奇跡「八坂の神風」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント超達成賞", + "UnlockRequirementEn": "Event Ultra Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2718, + "TitleName": "秘弾「そして誰もいなくなるか?」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2719, + "TitleName": "神霊「夢想封印 瞬」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2720, + "TitleName": "TAITO STAFF", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 2721, + "TitleName": "TAITO GUEST", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 2722, + "TitleName": "生放送出演中!", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 2723, + "TitleName": "ご本人", + "UnlockRequirementJp": "", + "UnlockRequirementEn": "", + "UnlockType": 12 + }, + { + "Id": 2724, + "TitleName": "I love \u0022SideStrania \u0022BOSS2\u0022\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2725, + "TitleName": "Strania Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2726, + "TitleName": "Strania King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2727, + "TitleName": "Strania God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2728, + "TitleName": "I love \u0022]-[|/34\u003C#!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2729, + "TitleName": "]-[|/34\u003C#! |v|45\u002B3/2", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2730, + "TitleName": "]-[|/34\u003C#! |\u003C1/V6", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2731, + "TitleName": "]-[|/34\u003C#! 60|)", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2732, + "TitleName": "I love \u0022Unknown Pollution\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2733, + "TitleName": "Unknown Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2734, + "TitleName": "Unknown King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2735, + "TitleName": "Unknown God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2736, + "TitleName": "I love \u0022ドラゴンスピリットメドレー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2737, + "TitleName": "ドラゴンスピリット マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2738, + "TitleName": "ドラゴンスピリット キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2739, + "TitleName": "ドラゴンスピリット ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2740, + "TitleName": "I love \u0022炉心融解\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2741, + "TitleName": "炉心融解先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2742, + "TitleName": "炉心融解大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2743, + "TitleName": "炉心融解神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2744, + "TitleName": "I love \u0022ピコラセテ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 2745, + "TitleName": "ピコラセマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2746, + "TitleName": "ピコラセキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2747, + "TitleName": "ピコラセゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 2748, + "TitleName": "I love \u0022Tragedy Flame\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 2749, + "TitleName": "Tragedy Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2750, + "TitleName": "Tragedy King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 2751, + "TitleName": "Tragedy God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 2752, + "TitleName": "I love \u0022セツナトリップ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2753, + "TitleName": "あ゛ー!もーっ!マスターッ!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2754, + "TitleName": "あ゛ー!もーっ!キングッ!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2755, + "TitleName": "あ゛ー!もーっ!ゴッドッ!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2756, + "TitleName": "I love \u0022シルバーバレット\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2757, + "TitleName": "バレットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2758, + "TitleName": "バレットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2759, + "TitleName": "バレットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2760, + "TitleName": "I love \u0022会いたい\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2761, + "TitleName": "会いたい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2762, + "TitleName": "会いたい大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2763, + "TitleName": "会いたい神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2764, + "TitleName": "I love \u0022ECHO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2765, + "TitleName": ":-) master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2766, + "TitleName": ":-) king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2767, + "TitleName": ":-) god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2768, + "TitleName": "I love \u0022シリョクケンサ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2769, + "TitleName": "C先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2770, + "TitleName": "C大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2771, + "TitleName": "C神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2772, + "TitleName": "I love \u0022Holography\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2773, + "TitleName": "Holography Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2774, + "TitleName": "Holography King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2775, + "TitleName": "Holography God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2776, + "TitleName": "超シューティング神", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2777, + "TitleName": "最終鬼畜兵器", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2778, + "TitleName": "ザウエル", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2779, + "TitleName": "弩級戦闘機兵", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2780, + "TitleName": "赤いクリスタル", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2781, + "TitleName": "死ぬがよい。", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2782, + "TitleName": "ブルードラゴン", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2783, + "TitleName": "星霜鋼機", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント超達成賞", + "UnlockRequirementEn": "Event Ultra Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2784, + "TitleName": "雷の紫鳳", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2785, + "TitleName": "I love STG", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2786, + "TitleName": "一番星☆☆☆", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント金賞", + "UnlockRequirementEn": "Event Gold Award", + "UnlockType": 12 + }, + { + "Id": 2787, + "TitleName": "天使の囁き", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント銀賞", + "UnlockRequirementEn": "Event Silver Award", + "UnlockType": 12 + }, + { + "Id": 2788, + "TitleName": "恋する乙女", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント銅賞", + "UnlockRequirementEn": "Event Bronze Award", + "UnlockType": 12 + }, + { + "Id": 2789, + "TitleName": "元気いっぱい!", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント優秀賞", + "UnlockRequirementEn": "Event Excellence Performance Award", + "UnlockType": 12 + }, + { + "Id": 2790, + "TitleName": "ヘソ出し!", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント優良賞", + "UnlockRequirementEn": "Event Good Performance Award", + "UnlockType": 12 + }, + { + "Id": 2791, + "TitleName": "S級にんじん", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベントグルーヴ賞", + "UnlockRequirementEn": "Event Groove Award", + "UnlockType": 12 + }, + { + "Id": 2792, + "TitleName": "ちょっぴりセクシー", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント努力賞", + "UnlockRequirementEn": "Event Good Effort Award", + "UnlockType": 12 + }, + { + "Id": 2793, + "TitleName": "ふんわり甘い声", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント超達成賞", + "UnlockRequirementEn": "Event Ultra Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2794, + "TitleName": "赤ゴーグル☆", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント達成賞", + "UnlockRequirementEn": "Event Achievement Award", + "UnlockType": 12 + }, + { + "Id": 2795, + "TitleName": "I love GUMI", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント参加賞", + "UnlockRequirementEn": "Event Attendance Award", + "UnlockType": 12 + }, + { + "Id": 2796, + "TitleName": "マカオ勢", + "UnlockRequirementJp": "マカオでプレイ", + "UnlockRequirementEn": "Played in Macau", + "UnlockType": 13 + }, + { + "Id": 2797, + "TitleName": "牛乳プリン", + "UnlockRequirementJp": "オンライン対戦でマカオの\nプレイヤーとマッチング", + "UnlockRequirementEn": "Play with a player based in Macau\nin Online Match", + "UnlockType": 29 + }, + { + "Id": 2798, + "TitleName": "SERIOUS LOOK", + "UnlockRequirementJp": "オンライン対戦でマカオの\nプレイヤーと10回マッチング", + "UnlockRequirementEn": "Play with players based in Macau\n10 times in Online Match", + "UnlockType": 29 + }, + { + "Id": 2799, + "TitleName": "第一ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2800, + "TitleName": "第二ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2801, + "TitleName": "第三ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2802, + "TitleName": "I love \u0022初音ミクの消失\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2803, + "TitleName": "最高速の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2804, + "TitleName": "最高速の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2805, + "TitleName": "最高速の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2806, + "TitleName": "I love \u0022全力バタンキュー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2807, + "TitleName": "センセイ松", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2808, + "TitleName": "ダイオウ松", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2809, + "TitleName": "カミ松", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2810, + "TitleName": "I love \u0022THIS IS HDM\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 2811, + "TitleName": "HDM MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2812, + "TitleName": "HDM KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2813, + "TitleName": "HDM GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 2814, + "TitleName": "I love \u0022Endless Seeker\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2815, + "TitleName": "マスター・ムラサ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2816, + "TitleName": "キング・ムラサ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2817, + "TitleName": "キャプテン・ムラサ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2818, + "TitleName": "I love \u0022マウストゥーマウス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2819, + "TitleName": "小さな小さな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2820, + "TitleName": "小さな小さな大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2821, + "TitleName": "小さな小さな神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2822, + "TitleName": "I love \u0022UFOロマンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2823, + "TitleName": "UFO先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2824, + "TitleName": "UFO大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2825, + "TitleName": "UFO神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2826, + "TitleName": "I love \u0022I.N.F.E.R.N.O\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2827, + "TitleName": "M.A.S.T.E.R", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2828, + "TitleName": "K.I.N.G", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2829, + "TitleName": "G.O.D", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2830, + "TitleName": "I love \u0022Sign of \u002210.5km\u0022\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2831, + "TitleName": "10.5master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2832, + "TitleName": "10.5king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2833, + "TitleName": "10.5god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2834, + "TitleName": "I love \u0022Party 4U -holy nite mix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 2835, + "TitleName": "Party 4M", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2836, + "TitleName": "Party 4K", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2837, + "TitleName": "Party 4G", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 2838, + "TitleName": "I love \u0022Help me,\u3000ERINNNNNN!! -Cranky remix-", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2839, + "TitleName": "(゚∀゚)o彡゜ますたー!ますたー!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2840, + "TitleName": "(゚∀゚)o彡゜きんぐ!きんぐ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2841, + "TitleName": "(゚∀゚)o彡゜ごっど!ごっど!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2842, + "TitleName": "通りすがりの魔法使い", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2843, + "TitleName": "山の新人神様", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2844, + "TitleName": "I love \u0022Blue Destiny Blue\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 2845, + "TitleName": "Blue Master Blue", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2846, + "TitleName": "Blue King Blue", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2847, + "TitleName": "Blue God Blue", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 2848, + "TitleName": "I love \u0022Sunglow\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 2849, + "TitleName": "Sunglow Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2850, + "TitleName": "Sunglow King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2851, + "TitleName": "Sunglow God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 2852, + "TitleName": "I love \u0022Valhalla\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 2853, + "TitleName": "全知全能の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2854, + "TitleName": "全知全能の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 2855, + "TitleName": "全知全能の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 2856, + "TitleName": "I love \u0022悪ノ娘\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2857, + "TitleName": "悪ノ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2858, + "TitleName": "悪ノ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2859, + "TitleName": "悪ノ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2860, + "TitleName": "I love \u0022Into Starlight\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2861, + "TitleName": "Into Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2862, + "TitleName": "Into King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2863, + "TitleName": "Into God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2864, + "TitleName": "I love \u0022CITRUS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2865, + "TitleName": "CITRUS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2866, + "TitleName": "CITRUS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2867, + "TitleName": "CITRUS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2868, + "TitleName": "I love \u0022ミライ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2869, + "TitleName": "ミライマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2870, + "TitleName": "ミライキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2871, + "TitleName": "ミライゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2872, + "TitleName": "I love \u0022アスノヨゾラ哨戒班\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2873, + "TitleName": "アスノヨゾラ先生班", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2874, + "TitleName": "アスノヨゾラ大王班", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2875, + "TitleName": "アスノヨゾラ神班", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2876, + "TitleName": "I love \u0022かくしごと\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2877, + "TitleName": "かくしごと先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2878, + "TitleName": "かくしごと大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2879, + "TitleName": "かくしごと神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2880, + "TitleName": "I love \u0022Perverse Love Rock!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2881, + "TitleName": "Perverse Love Master!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2882, + "TitleName": "Perverse Love King!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2883, + "TitleName": "Perverse Love God!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2884, + "TitleName": "I love \u0022サンドリヨン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2885, + "TitleName": "サンドリヨンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2886, + "TitleName": "サンドリヨンクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2887, + "TitleName": "サンドリヨンゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2888, + "TitleName": "I love \u0022Got hive of Ra\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2889, + "TitleName": "Groove faith", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2890, + "TitleName": "King of Groove faith", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2891, + "TitleName": "God hive of Ra", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2892, + "TitleName": "I love \u0022Stratospheric Journey\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2893, + "TitleName": "Stratospheric Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2894, + "TitleName": "Stratospheric King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2895, + "TitleName": "Stratospheric God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2896, + "TitleName": "I love \u0022White World feat. 小田ユウ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 2897, + "TitleName": "ピュアマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2898, + "TitleName": "ピュアクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 2899, + "TitleName": "ピュアヒューリーズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 2900, + "TitleName": "ふたつのARIA", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2901, + "TitleName": "一人じゃないんだ", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2902, + "TitleName": "今日の日をいつか思い出せ", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2903, + "TitleName": "残された光", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2904, + "TitleName": "甘い甘い愛の香り", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2905, + "TitleName": "光の橋を架けて", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2906, + "TitleName": "「忘れないよ」", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2907, + "TitleName": "妹の歌姫", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2908, + "TitleName": "姉の歌姫", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2909, + "TitleName": "I love ONE 2016", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2910, + "TitleName": "I love IA 2016", + "UnlockRequirementJp": "『IA\u0026ONE』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2911, + "TitleName": "AUG, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2912, + "TitleName": "SEP, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2913, + "TitleName": "OCT, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2914, + "TitleName": "NOV, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2915, + "TitleName": "DEC, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2916, + "TitleName": "JAN, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2917, + "TitleName": "FEB, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2918, + "TitleName": "MAR, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2919, + "TitleName": "APR, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2920, + "TitleName": "MAY, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2921, + "TitleName": "JUN, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2922, + "TitleName": "JUL, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 2923, + "TitleName": "I love \u0022でんぱれーどJAPAN\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 2924, + "TitleName": "モット・モット・デンパ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2925, + "TitleName": "モット・モット・デンパ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 2926, + "TitleName": "モット・モット・デンパ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 2927, + "TitleName": "I love \u0022HONEY SUNRiSE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 2928, + "TitleName": "HONEY SUNRiSE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2929, + "TitleName": "HONEY SUNRiSE QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 2930, + "TitleName": "HONEY SUNRiSE GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 2931, + "TitleName": "I love \u0022グルーヴ・ザ・ハート\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2932, + "TitleName": "CHAIN CHAIN CHAIN MASTER!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2933, + "TitleName": "CHAIN CHAIN CHAIN KING!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2934, + "TitleName": "CHAIN CHAIN CHAIN GOD!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2935, + "TitleName": "I love \u0022ロストワンの号哭\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2936, + "TitleName": "もうどうだっていいや先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2937, + "TitleName": "もうどうだっていいや大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2938, + "TitleName": "もうどうだっていいや神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2939, + "TitleName": "I love \u0022どりーみんチュチュ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2940, + "TitleName": "チョコ la ta ta ta ta master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2941, + "TitleName": "チョコ la ta ta ta ta queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2942, + "TitleName": "チョコ la ta ta ta ta goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2943, + "TitleName": "I love \u0022Just Be Friends\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2944, + "TitleName": "Just Be Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2945, + "TitleName": "Just Be King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2946, + "TitleName": "Just Be God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2947, + "TitleName": "I love \u0022みくみくにしてあげる♪【してやんよ】\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2948, + "TitleName": "みくみく先生♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2949, + "TitleName": "みくみく女王♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2950, + "TitleName": "みくみく女神♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2951, + "TitleName": "I love \u0022ネトゲ廃人シュプレヒコール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2952, + "TitleName": "ネトゲ廃人先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2953, + "TitleName": "ネトゲ廃人大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2954, + "TitleName": "ネトゲ廃神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2955, + "TitleName": "I love \u0022ストロボナイツ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2956, + "TitleName": "ストロボマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2957, + "TitleName": "ストロボキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2958, + "TitleName": "ストロボゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2959, + "TitleName": "I love \u0022Scarlet Lance\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 2960, + "TitleName": "Scarlet Lance Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2961, + "TitleName": "Scarlet Lance King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 2962, + "TitleName": "Scarlet Lance God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 2963, + "TitleName": "第三回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第三回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEn": "第三回天下一音ゲ祭全国頂上決戦進出", + "UnlockType": 12 + }, + { + "Id": 2964, + "TitleName": "第三回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第三回天下一音ゲ祭優勝", + "UnlockRequirementEn": "第三回天下一音ゲ祭優勝", + "UnlockType": 12 + }, + { + "Id": 2965, + "TitleName": "REV. × GC 達人", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2966, + "TitleName": "イノベーター", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2967, + "TitleName": "HONEY♡", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2968, + "TitleName": "ストイック", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2969, + "TitleName": "SUNRISE", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2970, + "TitleName": "I love 燦", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2971, + "TitleName": "クロビってる?", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2972, + "TitleName": "今日も一日 dxb", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2973, + "TitleName": "I love 暁月", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2974, + "TitleName": "レヴ民でヴ民", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2975, + "TitleName": "クロビ勢", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2976, + "TitleName": "I love crossbeats REV. SUNRISE", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2977, + "TitleName": "MikuLukaGod", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2978, + "TitleName": "S\u002B級ネギトロ", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2979, + "TitleName": "キラリと走る星", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2980, + "TitleName": "るっかるかにしてやんよ~!", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2981, + "TitleName": "みっくみくにしてやんよ~!", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2982, + "TitleName": "純情可憐な女の子", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2983, + "TitleName": "S\u002B級マグロ", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2984, + "TitleName": "ああああ", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2985, + "TitleName": "Just be friends", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2986, + "TitleName": "I LOVE 巡音ルカ 2016", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2987, + "TitleName": "I LOVE 初音ミク 2016", + "UnlockRequirementJp": "『初音ミク\u0026巡音ルカ』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 2988, + "TitleName": "I love \u0022裏表ラバーズ\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2989, + "TitleName": "現実逃避先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2990, + "TitleName": "現実逃避大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2991, + "TitleName": "現実逃避神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2992, + "TitleName": "I love \u0022ダブルラリアット\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2993, + "TitleName": "半径85センチ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2994, + "TitleName": "半径85センチ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2995, + "TitleName": "半径85センチ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 2996, + "TitleName": "I love \u0022ローリンガール\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 2997, + "TitleName": "「先生は今日も転がります。」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2998, + "TitleName": "「女王様は今日も転がります。」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 2999, + "TitleName": "「女神様は今日も転がります。」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3000, + "TitleName": "I love \u0022ハッピーシンセサイザ\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3001, + "TitleName": "電子音で伝えるよマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3002, + "TitleName": "電子音で伝えるよキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3003, + "TitleName": "電子音で伝えるよゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3004, + "TitleName": "I love \u0022ロミオとシンデレラ\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3005, + "TitleName": "そんな気分よ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3006, + "TitleName": "そんな気分よ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3007, + "TitleName": "そんな気分よ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3008, + "TitleName": "I love \u0022I miss you baby\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3009, + "TitleName": "契約マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3010, + "TitleName": "契約キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3011, + "TitleName": "契約ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3012, + "TitleName": "I love \u0022Wizard\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3013, + "TitleName": "スフィア回収マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3014, + "TitleName": "スフィア回収キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3015, + "TitleName": "スフィア回収ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3016, + "TitleName": "I love \u0022You and Me\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3017, + "TitleName": "タマシイ呼び出しマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3018, + "TitleName": "タマシイ呼び出しクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3019, + "TitleName": "タマシイ呼び出しゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3020, + "TitleName": "I love \u0022Overloud\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3021, + "TitleName": "トラップ回避マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3022, + "TitleName": "トラップ回避キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3023, + "TitleName": "トラップ回避ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3024, + "TitleName": "I love \u0022東方地神律\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3025, + "TitleName": "地神律先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3026, + "TitleName": "地神律大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3027, + "TitleName": "地神律神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3028, + "TitleName": "I love \u0022アブストラクト・ナンセンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3029, + "TitleName": "アブストラクト・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3030, + "TitleName": "アブストラクト・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3031, + "TitleName": "アブストラクト・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3032, + "TitleName": "I love \u0022ukigumo\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3033, + "TitleName": "┌[・ ・]┘ master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3034, + "TitleName": "┌[・ ・]┘ king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3035, + "TitleName": "┌[・ ・]┘god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3036, + "TitleName": "I love \u0022シュガーソングとビターステップ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3037, + "TitleName": "技名を叫んでから殴る先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3038, + "TitleName": "技名を叫んでから殴る大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3039, + "TitleName": "技名を叫んでから殴る神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3040, + "TitleName": "I love \u0022トゥッティ!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3041, + "TitleName": "次の曲が始まるのです先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3042, + "TitleName": "次の曲が始まるのです女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3043, + "TitleName": "次の曲が始まるのです女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3044, + "TitleName": "I love \u0022ハレ晴レユカイ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3045, + "TitleName": "世界を大いに盛り上げる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3046, + "TitleName": "世界を大いに盛り上げる女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3047, + "TitleName": "世界を大いに盛り上げる女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3048, + "TitleName": "最高のパートナー", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3049, + "TitleName": "超存在タイヨウ", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3050, + "TitleName": "超存在ツキ", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3051, + "TitleName": "記憶を司る者", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3052, + "TitleName": "最後のSP", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3053, + "TitleName": "正体不明の男", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3054, + "TitleName": "謎の科学者", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3055, + "TitleName": "探偵組織の幹部", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3056, + "TitleName": "自称ライバル", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3057, + "TitleName": "研究者", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3058, + "TitleName": "ヘッドハンター", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3059, + "TitleName": "ギーク", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3060, + "TitleName": "リサーチャー", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3061, + "TitleName": "謎の少女", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3062, + "TitleName": "運び屋", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3063, + "TitleName": "I LOVE 消滅都市", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3064, + "TitleName": "I love \u0022Material of Puppets\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3065, + "TitleName": "Master of Puppets", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3066, + "TitleName": "King of Puppets", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3067, + "TitleName": "God of Puppets", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3068, + "TitleName": "I love \u0022ジンガイクライシス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3069, + "TitleName": "ジンガイマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3070, + "TitleName": "ジンガイキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3071, + "TitleName": "ジンガイゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3072, + "TitleName": "I love \u0022Dream Coaster\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3073, + "TitleName": "夢の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3074, + "TitleName": "夢の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3075, + "TitleName": "夢の支配者", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3076, + "TitleName": "I love \u0022天ノ弱\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3077, + "TitleName": "天性の弱虫", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3078, + "TitleName": "天性の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3079, + "TitleName": "天性の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3080, + "TitleName": "I love \u0022INCOGNITO\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3081, + "TitleName": "INCOGNITO MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3082, + "TitleName": "INCOGNITO QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3083, + "TitleName": "INCOGNITO GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3084, + "TitleName": "I love \u0022You Need Fxxkin\u0027 Anthem\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3085, + "TitleName": "xx Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3086, + "TitleName": "xx King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3087, + "TitleName": "xx God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3088, + "TitleName": "I love \u0022すーぱーぬこになりたい\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3089, + "TitleName": "にぼし!にぼし!ますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3090, + "TitleName": "にぼし!にぼし!きんぐ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3091, + "TitleName": "にぼし!にぼし!ごっど", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3092, + "TitleName": "I love \u0022清らかな幸福\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3093, + "TitleName": "清らかな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3094, + "TitleName": "清らかな女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3095, + "TitleName": "清らかな女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3096, + "TitleName": "I love \u0022Old Heaven\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3097, + "TitleName": "Old Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3098, + "TitleName": "Old King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3099, + "TitleName": "Old God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3100, + "TitleName": "I love \u0022パーティクルパーティ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3101, + "TitleName": "パーティクルマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3102, + "TitleName": "パーティクルクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3103, + "TitleName": "パーティクルゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3104, + "TitleName": "I love \u0022鼓動、零れぬ酒\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3105, + "TitleName": "一滴も零さない先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3106, + "TitleName": "一滴も零さない女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3107, + "TitleName": "一滴も零さない女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3108, + "TitleName": "I love \u0022Lust SIN\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3109, + "TitleName": "氷結先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3110, + "TitleName": "氷結大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3111, + "TitleName": "氷結神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3112, + "TitleName": "東方参面録", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3113, + "TitleName": "月符「緋色の狂夢」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3114, + "TitleName": "天狼「ハイスピードバウンス」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3115, + "TitleName": "四天王奥義「三歩必殺」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3116, + "TitleName": "河童「スピン・ザ・セファリックプレート」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3117, + "TitleName": "鬼符「怪力乱神」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3118, + "TitleName": "虚史「幻想郷伝説」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3119, + "TitleName": "光学「オプティカルカモフラージュ」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3120, + "TitleName": "咒詛「首吊り蓬莱人形」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3121, + "TitleName": "産霊「ファーストピラミッド」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3122, + "TitleName": "夢符「藍色の愁夢」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3123, + "TitleName": "変身「スターファング」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3124, + "TitleName": "操符「マリオネットパラル」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3125, + "TitleName": "忿怒「空前絶後大目玉焼き」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3126, + "TitleName": "欲符「スコアデザイアイーター」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3127, + "TitleName": "彩符「極彩颱風」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3128, + "TitleName": "I love \u0022オレを越えて行け\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3129, + "TitleName": "新宿先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3130, + "TitleName": "新宿大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3131, + "TitleName": "新宿神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3132, + "TitleName": "I love \u0022KALEIDOSCOPE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3133, + "TitleName": "大阪先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3134, + "TitleName": "大阪大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3135, + "TitleName": "大阪神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3136, + "TitleName": "I love \u0022Reversible Justice\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3137, + "TitleName": "絶対思想啓蒙局先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3138, + "TitleName": "絶対思想啓蒙局大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3139, + "TitleName": "絶対思想啓蒙局神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3140, + "TitleName": "I love \u0022働かずに食う [IA Ver.]\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3141, + "TitleName": "働かずに食う先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3142, + "TitleName": "働かずに食う大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3143, + "TitleName": "働かずに食う神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3144, + "TitleName": "I love \u0022We Are The Massive New Krew\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3145, + "TitleName": "MNKMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3146, + "TitleName": "MNKKing", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3147, + "TitleName": "MNKGod", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3148, + "TitleName": "I love \u0022Bad ∞ End ∞ Night\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3149, + "TitleName": "Bad ∞ End ∞ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3150, + "TitleName": "Bad ∞ End ∞ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3151, + "TitleName": "Bad ∞ End ∞ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3152, + "TitleName": "I love \u0022HG魔改造ポリビニル少年\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3153, + "TitleName": "HG魔改造ポリビニル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3154, + "TitleName": "HG魔改造ポリビニル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3155, + "TitleName": "HG魔改造ポリビニル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3156, + "TitleName": "I love \u0022Abyssal Withdrawal\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3157, + "TitleName": "MASTER CLAW", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3158, + "TitleName": "KING CLAW", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3159, + "TitleName": "GOD CLAW", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3160, + "TitleName": "I love \u0022COSMIC AIR WAY\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3161, + "TitleName": "MASTER FAN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3162, + "TitleName": "KING FAN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3163, + "TitleName": "GOD FAN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3164, + "TitleName": "I love \u0022say PaPa re:mix\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3165, + "TitleName": "BIO MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3166, + "TitleName": "BIO KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3167, + "TitleName": "BIO GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3168, + "TitleName": "I love \u0022仙酌絶唱のファンタジア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3169, + "TitleName": "例大祭先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3170, + "TitleName": "例大祭大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3171, + "TitleName": "例大祭神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3172, + "TitleName": "I love \u0022十面相\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3173, + "TitleName": "多重人格先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3174, + "TitleName": "多重人格大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3175, + "TitleName": "多重人格神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3176, + "TitleName": "I love \u0022Warrior\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3177, + "TitleName": "Master of Warrior", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3178, + "TitleName": "King of Warrior", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3179, + "TitleName": "God of Warrior", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3180, + "TitleName": "G.T.", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3181, + "TitleName": "LITTLE STRIPES", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3182, + "TitleName": "DARK HELIOS", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3183, + "TitleName": "FORCE CLAW", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3184, + "TitleName": "ずんどこずんどこずんどこずんどこ", + "UnlockRequirementJp": "『イオシスミニイベント』報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3185, + "TitleName": "どんつくどんつくどんつくどんつく", + "UnlockRequirementJp": "『イオシスミニイベント』報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3186, + "TitleName": "I love IOSYS", + "UnlockRequirementJp": "『イオシスミニイベント』報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3187, + "TitleName": "未来も、希望も、奪還する!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3188, + "TitleName": "頂点に立つのは、この俺だ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3189, + "TitleName": "福音を奏でよう", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3190, + "TitleName": "排除する!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3191, + "TitleName": "ご覚悟くださいませ☆", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3192, + "TitleName": "残酷な真実を見せてあげる", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3193, + "TitleName": "ミラクルアートでやっつけちゃうヨ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3194, + "TitleName": "ガンバ、ガンバ、ファイト♪", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3195, + "TitleName": "行くぞシャンドラ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3196, + "TitleName": "喧嘩上等!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3197, + "TitleName": "たーまやーっ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3198, + "TitleName": "心!技!体!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3199, + "TitleName": "ラブ&ピース!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3200, + "TitleName": "懺悔の時間です!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3201, + "TitleName": "さぁ…ゲームスタートだ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3202, + "TitleName": "I love ガンスリンガーストラトス", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3203, + "TitleName": "ノリノリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3204, + "TitleName": "ゆったリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3205, + "TitleName": "キリリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3206, + "TitleName": "びっくリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3207, + "TitleName": "スッキリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3208, + "TitleName": "お断リンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3209, + "TitleName": "にやリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3210, + "TitleName": "がっかリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3211, + "TitleName": "にっこリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3212, + "TitleName": "超COOL!", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3213, + "TitleName": "しっかリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3214, + "TitleName": "S\u002B級カニみそ", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3215, + "TitleName": "かかってきやがれ!", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3216, + "TitleName": "I love ロンメイ", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3217, + "TitleName": "I love 拳", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3218, + "TitleName": "I love リンカ", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3219, + "TitleName": "I love \u0022DreamRiser\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3220, + "TitleName": "戦車先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3221, + "TitleName": "戦車女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3222, + "TitleName": "戦車女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3223, + "TitleName": "I love \u0022Punky Funky Love\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3224, + "TitleName": "Punky Funky Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3225, + "TitleName": "Punky Funky King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3226, + "TitleName": "Punky Funky God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3227, + "TitleName": "I love \u0022エイリアンエイリアン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3228, + "TitleName": "エイリアンエイリアンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3229, + "TitleName": "エイリアンエイリアンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3230, + "TitleName": "エイリアンエイリアンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3231, + "TitleName": "I love \u0022WARNING×WARNING×WARNING\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3232, + "TitleName": "星条旗のピエロ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3233, + "TitleName": "星条旗の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3234, + "TitleName": "星条旗の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3235, + "TitleName": "I love \u0022ピリオドのない世界\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3236, + "TitleName": "ピリオドゼロマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3237, + "TitleName": "ピリオドゼロキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3238, + "TitleName": "ピリオドゼロゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3239, + "TitleName": "I love \u0022クレープ・to・ミー。\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3240, + "TitleName": "クレープ・to・マスター。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3241, + "TitleName": "クレープ・to・キング。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3242, + "TitleName": "クレープ・to・ゴッド。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3243, + "TitleName": "I love \u0022VALLISTA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3244, + "TitleName": "VALLISTA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3245, + "TitleName": "VALLISTA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3246, + "TitleName": "VALLISTA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3247, + "TitleName": "I love \u0022残酷な天使のテーゼ\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3248, + "TitleName": "この宇宙を抱いて輝く先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3249, + "TitleName": "この宇宙を抱いて輝く大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3250, + "TitleName": "この宇宙を抱いて輝く神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3251, + "TitleName": "I love \u0022創聖のアクエリオン\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3252, + "TitleName": "一万年と二千年前から先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3253, + "TitleName": "一万年と二千年前から大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3254, + "TitleName": "一万年と二千年前から神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3255, + "TitleName": "I love \u0022カノン\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3256, + "TitleName": "Trancemaster カノン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3257, + "TitleName": "Tranceking カノン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3258, + "TitleName": "Trancegod カノン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3259, + "TitleName": "I love \u0022TECHNO COMPLEX\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3260, + "TitleName": "TECHNO COMPLEX MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3261, + "TitleName": "TECHNO COMPLEX KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3262, + "TitleName": "TECHNO COMPLEX GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3263, + "TitleName": "I love \u0022脱法ロック\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3264, + "TitleName": "脱法先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3265, + "TitleName": "脱法大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3266, + "TitleName": "脱法神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3267, + "TitleName": "I love \u0022Bright Lights\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3268, + "TitleName": "Bright Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3269, + "TitleName": "Bright King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3270, + "TitleName": "Bright God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3271, + "TitleName": "I love \u0022東方外魔伝\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3272, + "TitleName": "変なTシャツヤロー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3273, + "TitleName": "変なTシャツ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3274, + "TitleName": "変なTシャツ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3275, + "TitleName": "I love \u0022Ring a bell beautifully\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3276, + "TitleName": "気を使う程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3277, + "TitleName": "気を使う程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3278, + "TitleName": "気を使う程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3279, + "TitleName": "I love \u0022いーあるふぁんくらぶ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3280, + "TitleName": "うぉーあいにーますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3281, + "TitleName": "うぉーあいにーきんぐ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3282, + "TitleName": "うぉーあいにーごっど", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3283, + "TitleName": "I love \u0022ワールズエンド・ダンスホール\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3284, + "TitleName": "ホップ・ステップでマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3285, + "TitleName": "ホップ・ステップでクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3286, + "TitleName": "ホップ・ステップでゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3287, + "TitleName": "I love \u0022ペルソナリティ・コンプレックス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3288, + "TitleName": "うざったいな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3289, + "TitleName": "うざったいな女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3290, + "TitleName": "うざったいな女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3291, + "TitleName": "I love \u0022Moonbound feat. Yukacco\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3292, + "TitleName": "Moonbound master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3293, + "TitleName": "Moonbound king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3294, + "TitleName": "Moonbound god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3295, + "TitleName": "I love \u0022アストロトルーパー\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3296, + "TitleName": "銀河を駆け抜ける先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3297, + "TitleName": "銀河を駆け抜ける女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3298, + "TitleName": "銀河を駆け抜ける女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3299, + "TitleName": "グルーヴ六十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n510曲で達成", + "UnlockRequirementEn": "Got an S for 510 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3300, + "TitleName": "グルーヴ七十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n520曲で達成", + "UnlockRequirementEn": "Got an S for 520 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3301, + "TitleName": "グルーヴ八十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n530曲で達成", + "UnlockRequirementEn": "Got an S for 530 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3302, + "TitleName": "グルーヴ九十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n540曲で達成", + "UnlockRequirementEn": "Got an S for 540 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3303, + "TitleName": "グルーヴ百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n550曲で達成", + "UnlockRequirementEn": "Got an S for 550 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3304, + "TitleName": "グルーヴ二百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n560曲で達成", + "UnlockRequirementEn": "Got an S for 560 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3305, + "TitleName": "グルーヴ三百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n570曲で達成", + "UnlockRequirementEn": "Got an S for 570 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3306, + "TitleName": "グルーヴ四百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n580曲で達成", + "UnlockRequirementEn": "Got an S for 580 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3307, + "TitleName": "グルーヴ五百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n590曲で達成", + "UnlockRequirementEn": "Got an S for 590 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3308, + "TitleName": "グルーヴ六百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n600曲で達成", + "UnlockRequirementEn": "Got an S for 600 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3309, + "TitleName": "グルーヴ七百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n610曲で達成", + "UnlockRequirementEn": "Got an S for 610 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3310, + "TitleName": "グルーヴ八百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n620曲で達成", + "UnlockRequirementEn": "Got an S for 620 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3311, + "TitleName": "グルーヴ九百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n630曲で達成", + "UnlockRequirementEn": "Got an S for 630 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3312, + "TitleName": "グルーヴ一千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n640曲で達成", + "UnlockRequirementEn": "Got an S for 640 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3313, + "TitleName": "グルーヴ二千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n650曲で達成", + "UnlockRequirementEn": "Got an S for 650 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3314, + "TitleName": "グルーヴ三千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n660曲で達成", + "UnlockRequirementEn": "Got an S for 660 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3315, + "TitleName": "グルーヴ四千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n670曲で達成", + "UnlockRequirementEn": "Got an S for 670 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3316, + "TitleName": "グルーヴ五千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n680曲で達成", + "UnlockRequirementEn": "Got an S for 680 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3317, + "TitleName": "グルーヴ六千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n690曲で達成", + "UnlockRequirementEn": "Got an S for 690 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3318, + "TitleName": "グルーヴ七千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n700曲で達成", + "UnlockRequirementEn": "Got an S for 700 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3319, + "TitleName": "グルーヴ八千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n710曲で達成", + "UnlockRequirementEn": "Got an S for 710 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3320, + "TitleName": "グルーヴ九千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n720曲で達成", + "UnlockRequirementEn": "Got an S for 720 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3321, + "TitleName": "グルーヴ一億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n730曲で達成", + "UnlockRequirementEn": "Got an S for 730 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3322, + "TitleName": "グルーヴ二億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n740曲で達成", + "UnlockRequirementEn": "Got an S for 740 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3323, + "TitleName": "グルーヴ三億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n750曲で達成", + "UnlockRequirementEn": "Got an S for 750 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3324, + "TitleName": "グルーヴ四億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n760曲で達成", + "UnlockRequirementEn": "Got an S for 760 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3325, + "TitleName": "グルーヴ五億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n770曲で達成", + "UnlockRequirementEn": "Got an S for 770 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3326, + "TitleName": "グルーヴ六億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n780曲で達成", + "UnlockRequirementEn": "Got an S for 780 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3327, + "TitleName": "グルーヴ七億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n790曲で達成", + "UnlockRequirementEn": "Got an S for 790 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3328, + "TitleName": "グルーヴ八億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n800曲で達成", + "UnlockRequirementEn": "Got an S for 800 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 9 + }, + { + "Id": 3329, + "TitleName": "S+級ドリア", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n510曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 510 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3330, + "TitleName": "S+級ガム", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n520曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 520 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3331, + "TitleName": "S+級せんべい", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n530曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 530 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3332, + "TitleName": "S+級親子丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n540曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 540 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3333, + "TitleName": "S+級いちご大福", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n550曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 550 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3334, + "TitleName": "S+級梅ぼし", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n560曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 560 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3335, + "TitleName": "S+級枝豆", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n570曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 570 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3336, + "TitleName": "S+級エビピラフ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n580曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 580 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3337, + "TitleName": "S+級キャラメル", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n590曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 590 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3338, + "TitleName": "S+級魚肉ソーセージ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n600曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 600 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3339, + "TitleName": "S+級串団子", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n610曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 610 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3340, + "TitleName": "S+級コーヒー牛乳", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n620曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 620 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3341, + "TitleName": "S+級茶碗蒸し", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n630曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 630 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3342, + "TitleName": "S+級チョコバナナ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n640曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 640 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3343, + "TitleName": "S+級ちらし寿司", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n650曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 650 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3344, + "TitleName": "S+級焼き鳥", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n660曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 660 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3345, + "TitleName": "S+級馬刺し", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n670曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 670 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3346, + "TitleName": "S+級ハヤシライス", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n680曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 680 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3347, + "TitleName": "S+級クッキー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n690曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 690 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3348, + "TitleName": "S+級回鍋肉", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n700曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 700 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3349, + "TitleName": "S+級抹茶", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n710曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 710 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3350, + "TitleName": "S+級焼きおにぎり", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n720曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 720 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3351, + "TitleName": "S+級まんじゅう", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n730曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 730 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3352, + "TitleName": "S+級ヨーグルト", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n740曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 740 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3353, + "TitleName": "S+級ラザニア", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n750曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 750 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3354, + "TitleName": "S+級麦茶", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n760曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 760 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3355, + "TitleName": "S+級ワンタン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n770曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 770 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3356, + "TitleName": "S+級ロールキャベツ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n780曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 780 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3357, + "TitleName": "S+級パンケーキ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n790曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 790 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3358, + "TitleName": "S+級アイスクリーム", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B評価を\n800曲で達成", + "UnlockRequirementEn": "Got an S\u002B for 800 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 10 + }, + { + "Id": 3359, + "TitleName": "真・十溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n510曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 510 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3360, + "TitleName": "真・百溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n520曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 520 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3361, + "TitleName": "真・千溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n530曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 530 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3362, + "TitleName": "真・一澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n540曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 540 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3363, + "TitleName": "真・十澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n550曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 550 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3364, + "TitleName": "真・百澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n560曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 560 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3365, + "TitleName": "真・千澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n570曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 570 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3366, + "TitleName": "真・一正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n580曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 580 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3367, + "TitleName": "真・十正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n590曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 590 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3368, + "TitleName": "真・百正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n600曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 600 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3369, + "TitleName": "真・千正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n610曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 610 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3370, + "TitleName": "真・一載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n620曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 620 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3371, + "TitleName": "真・十載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n630曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 630 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3372, + "TitleName": "真・百載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n640曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 640 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3373, + "TitleName": "真・千載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n650曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 650 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3374, + "TitleName": "真・一極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n660曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 660 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3375, + "TitleName": "真・十極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n670曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 670 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3376, + "TitleName": "真・百極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n680曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 680 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3377, + "TitleName": "真・千極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n690曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 690 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3378, + "TitleName": "真・一恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n700曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 700 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3379, + "TitleName": "真・十恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n710曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 710 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3380, + "TitleName": "真・百恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n720曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 720 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3381, + "TitleName": "真・千恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n730曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 730 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3382, + "TitleName": "真・一阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n740曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 740 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3383, + "TitleName": "真・十阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n750曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 750 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3384, + "TitleName": "真・百阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n760曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 760 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3385, + "TitleName": "真・千阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n770曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 770 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3386, + "TitleName": "真・一那由多段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n780曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 780 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3387, + "TitleName": "真・十那由多段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n790曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 790 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3388, + "TitleName": "真・百那由多段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS\u002B\u002B評価を\n800曲で達成", + "UnlockRequirementEn": "Got an S\u002B\u002B for 800 songs\nin SIMPLE, NORMAL HARD", + "UnlockType": 11 + }, + { + "Id": 3389, + "TitleName": "神・伍拾捌段", + "UnlockRequirementJp": "PERFECTを1525ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1525 stages", + "UnlockType": 28 + }, + { + "Id": 3390, + "TitleName": "神・伍拾玖段", + "UnlockRequirementJp": "PERFECTを1550ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1550 stages", + "UnlockType": 28 + }, + { + "Id": 3391, + "TitleName": "神・陸拾段", + "UnlockRequirementJp": "PERFECTを1575ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1575 stages", + "UnlockType": 28 + }, + { + "Id": 3392, + "TitleName": "神・陸拾壱段", + "UnlockRequirementJp": "PERFECTを1600ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1600 stages", + "UnlockType": 28 + }, + { + "Id": 3393, + "TitleName": "神・陸拾弐段", + "UnlockRequirementJp": "PERFECTを1625ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1625 stages", + "UnlockType": 28 + }, + { + "Id": 3394, + "TitleName": "神・陸拾参段", + "UnlockRequirementJp": "PERFECTを1650ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1650 stages", + "UnlockType": 28 + }, + { + "Id": 3395, + "TitleName": "神・陸拾肆段", + "UnlockRequirementJp": "PERFECTを1675ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1675 stages", + "UnlockType": 28 + }, + { + "Id": 3396, + "TitleName": "神・陸拾伍段", + "UnlockRequirementJp": "PERFECTを1700ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1700 stages", + "UnlockType": 28 + }, + { + "Id": 3397, + "TitleName": "神・陸拾陸段", + "UnlockRequirementJp": "PERFECTを1725ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1725 stages", + "UnlockType": 28 + }, + { + "Id": 3398, + "TitleName": "神・陸拾漆段", + "UnlockRequirementJp": "PERFECTを1750ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1750 stages", + "UnlockType": 28 + }, + { + "Id": 3399, + "TitleName": "神・陸拾捌段", + "UnlockRequirementJp": "PERFECTを1775ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1775 stages", + "UnlockType": 28 + }, + { + "Id": 3400, + "TitleName": "神・陸拾玖段", + "UnlockRequirementJp": "PERFECTを1800ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1800 stages", + "UnlockType": 28 + }, + { + "Id": 3401, + "TitleName": "神・漆拾段", + "UnlockRequirementJp": "PERFECTを1825ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1825 stages", + "UnlockType": 28 + }, + { + "Id": 3402, + "TitleName": "神・漆拾壱段", + "UnlockRequirementJp": "PERFECTを1850ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1850 stages", + "UnlockType": 28 + }, + { + "Id": 3403, + "TitleName": "神・漆拾弐段", + "UnlockRequirementJp": "PERFECTを1875ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1875 stages", + "UnlockType": 28 + }, + { + "Id": 3404, + "TitleName": "神・漆拾参段", + "UnlockRequirementJp": "PERFECTを1900ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1900 stages", + "UnlockType": 28 + }, + { + "Id": 3405, + "TitleName": "神・漆拾肆段", + "UnlockRequirementJp": "PERFECTを1925ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1925 stages", + "UnlockType": 28 + }, + { + "Id": 3406, + "TitleName": "神・漆拾伍段", + "UnlockRequirementJp": "PERFECTを1950ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1950 stages", + "UnlockType": 28 + }, + { + "Id": 3407, + "TitleName": "神・漆拾陸段", + "UnlockRequirementJp": "PERFECTを1975ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 1975 stages", + "UnlockType": 28 + }, + { + "Id": 3408, + "TitleName": "神・漆拾漆段", + "UnlockRequirementJp": "PERFECTを2000ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2000 stages", + "UnlockType": 28 + }, + { + "Id": 3409, + "TitleName": "神・漆拾捌段", + "UnlockRequirementJp": "PERFECTを2025ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2025 stages", + "UnlockType": 28 + }, + { + "Id": 3410, + "TitleName": "神・漆拾玖段", + "UnlockRequirementJp": "PERFECTを2050ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2050 stages", + "UnlockType": 28 + }, + { + "Id": 3411, + "TitleName": "神・捌拾段", + "UnlockRequirementJp": "PERFECTを2075ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2075 stages", + "UnlockType": 28 + }, + { + "Id": 3412, + "TitleName": "神・捌拾壱段", + "UnlockRequirementJp": "PERFECTを2100ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2100 stages", + "UnlockType": 28 + }, + { + "Id": 3413, + "TitleName": "神・捌拾弐段", + "UnlockRequirementJp": "PERFECTを2125ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2125 stages", + "UnlockType": 28 + }, + { + "Id": 3414, + "TitleName": "神・捌拾参段", + "UnlockRequirementJp": "PERFECTを2150ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2150 stages", + "UnlockType": 28 + }, + { + "Id": 3415, + "TitleName": "神・捌拾肆段", + "UnlockRequirementJp": "PERFECTを2175ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2175 stages", + "UnlockType": 28 + }, + { + "Id": 3416, + "TitleName": "神・捌拾伍段", + "UnlockRequirementJp": "PERFECTを2200ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2200 stages", + "UnlockType": 28 + }, + { + "Id": 3417, + "TitleName": "神・捌拾陸段", + "UnlockRequirementJp": "PERFECTを2225ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2225 stages", + "UnlockType": 28 + }, + { + "Id": 3418, + "TitleName": "神・捌拾漆段", + "UnlockRequirementJp": "PERFECTを2250ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2250 stages", + "UnlockType": 28 + }, + { + "Id": 3419, + "TitleName": "神・捌拾捌段", + "UnlockRequirementJp": "PERFECTを2275ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2275 stages", + "UnlockType": 28 + }, + { + "Id": 3420, + "TitleName": "神・捌拾玖段", + "UnlockRequirementJp": "PERFECTを2300ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2300 stages", + "UnlockType": 28 + }, + { + "Id": 3421, + "TitleName": "神・玖拾段", + "UnlockRequirementJp": "PERFECTを2325ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2325 stages", + "UnlockType": 28 + }, + { + "Id": 3422, + "TitleName": "神・玖拾壱段", + "UnlockRequirementJp": "PERFECTを2350ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2350 stages", + "UnlockType": 28 + }, + { + "Id": 3423, + "TitleName": "神・玖拾弐段", + "UnlockRequirementJp": "PERFECTを2375ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2375 stages", + "UnlockType": 28 + }, + { + "Id": 3424, + "TitleName": "神・玖拾参段", + "UnlockRequirementJp": "PERFECTを2400ステージで達成", + "UnlockRequirementEn": "Got a PERFECT in 2400 stages", + "UnlockType": 28 + }, + { + "Id": 3425, + "TitleName": "S級武田勝頼", + "UnlockRequirementJp": "S評価をSIMPLE525ステージで達成", + "UnlockRequirementEn": "Got an S for 525 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3426, + "TitleName": "S級竹中半兵衛", + "UnlockRequirementJp": "S評価をSIMPLE550ステージで達成", + "UnlockRequirementEn": "Got an S for 550 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3427, + "TitleName": "S級加藤清正", + "UnlockRequirementJp": "S評価をSIMPLE575ステージで達成", + "UnlockRequirementEn": "Got an S for 575 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3428, + "TitleName": "S級山内一豊", + "UnlockRequirementJp": "S評価をSIMPLE600ステージで達成", + "UnlockRequirementEn": "Got an S for 600 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3429, + "TitleName": "S級堀川国広", + "UnlockRequirementJp": "S評価をSIMPLE625ステージで達成", + "UnlockRequirementEn": "Got an S for 625 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3430, + "TitleName": "S級浦島虎徹", + "UnlockRequirementJp": "S評価をSIMPLE650ステージで達成", + "UnlockRequirementEn": "Got an S for 650 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3431, + "TitleName": "S級にっかり青江", + "UnlockRequirementJp": "S評価をSIMPLE675ステージで達成", + "UnlockRequirementEn": "Got an S for 675 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3432, + "TitleName": "S級骨喰藤四郎", + "UnlockRequirementJp": "S評価をSIMPLE700ステージで達成", + "UnlockRequirementEn": "Got an S for 700 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3433, + "TitleName": "S級加藤清光", + "UnlockRequirementJp": "S評価をSIMPLE725ステージで達成", + "UnlockRequirementEn": "Got an S for 725 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3434, + "TitleName": "S級へし切り長谷部", + "UnlockRequirementJp": "S評価をSIMPLE750ステージで達成", + "UnlockRequirementEn": "Got an S for 750 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3435, + "TitleName": "S級蜂須賀虎徹", + "UnlockRequirementJp": "S評価をSIMPLE775ステージで達成", + "UnlockRequirementEn": "Got an S for 775 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3436, + "TitleName": "S級山姥切国広", + "UnlockRequirementJp": "S評価をSIMPLE800ステージで達成", + "UnlockRequirementEn": "Got an S for 800 stages in SIMPLE mode", + "UnlockType": 5 + }, + { + "Id": 3437, + "TitleName": "S級服部半蔵", + "UnlockRequirementJp": "S評価をNORMAL525ステージで達成", + "UnlockRequirementEn": "Got an S for 525 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3438, + "TitleName": "S級石川五右衛門", + "UnlockRequirementJp": "S評価をNORMAL550ステージで達成", + "UnlockRequirementEn": "Got an S for 550 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3439, + "TitleName": "S級風魔小太郎", + "UnlockRequirementJp": "S評価をNORMAL575ステージで達成", + "UnlockRequirementEn": "Got an S for 575 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3440, + "TitleName": "S級千利休", + "UnlockRequirementJp": "S評価をNORMAL600ステージで達成", + "UnlockRequirementEn": "Got an S for 600 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3441, + "TitleName": "S級長曽禰虎徹", + "UnlockRequirementJp": "S評価をNORMAL625ステージで達成", + "UnlockRequirementEn": "Got an S for 625 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3442, + "TitleName": "S級陸奥守吉行", + "UnlockRequirementJp": "S評価をNORMAL650ステージで達成", + "UnlockRequirementEn": "Got an S for 650 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3443, + "TitleName": "S級和泉守兼定", + "UnlockRequirementJp": "S評価をNORMAL675ステージで達成", + "UnlockRequirementEn": "Got an S for 675 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3444, + "TitleName": "S級大倶利伽羅", + "UnlockRequirementJp": "S評価をNORMAL700ステージで達成", + "UnlockRequirementEn": "Got an S for 700 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3445, + "TitleName": "S級一期一振", + "UnlockRequirementJp": "S評価をNORMAL725ステージで達成", + "UnlockRequirementEn": "Got an S for 725 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3446, + "TitleName": "S級髭切", + "UnlockRequirementJp": "S評価をNORMAL750ステージで達成", + "UnlockRequirementEn": "Got an S for 750 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3447, + "TitleName": "S級膝丸", + "UnlockRequirementJp": "S評価をNORMAL775ステージで達成", + "UnlockRequirementEn": "Got an S for 775 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3448, + "TitleName": "S級獅子王", + "UnlockRequirementJp": "S評価をNORMAL800ステージで達成", + "UnlockRequirementEn": "Got an S for 800 stages in NORMAL mode", + "UnlockType": 6 + }, + { + "Id": 3449, + "TitleName": "S級真田信之", + "UnlockRequirementJp": "S評価をHARD525ステージで達成", + "UnlockRequirementEn": "Got an S for 525 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3450, + "TitleName": "S級真田昌幸", + "UnlockRequirementJp": "S評価をHARD550ステージで達成", + "UnlockRequirementEn": "Got an S for 550 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3451, + "TitleName": "S級佐々木小次郎", + "UnlockRequirementJp": "S評価をHARD575ステージで達成", + "UnlockRequirementEn": "Got an S for 575 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3452, + "TitleName": "S級宮本武蔵", + "UnlockRequirementJp": "S評価をHARD600ステージで達成", + "UnlockRequirementEn": "Got an S for 600 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3453, + "TitleName": "S級小狐丸", + "UnlockRequirementJp": "S評価をHARD625ステージで達成", + "UnlockRequirementEn": "Got an S for 625 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3454, + "TitleName": "S級鬼丸国綱", + "UnlockRequirementJp": "S評価をHARD650ステージで達成", + "UnlockRequirementEn": "Got an S for 650 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3455, + "TitleName": "S級数珠丸恒次", + "UnlockRequirementJp": "S評価をHARD675ステージで達成", + "UnlockRequirementEn": "Got an S for 675 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3456, + "TitleName": "S級大典太光世", + "UnlockRequirementJp": "S評価をHARD700ステージで達成", + "UnlockRequirementEn": "Got an S for 700 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3457, + "TitleName": "S級童子切安綱", + "UnlockRequirementJp": "S評価をHARD725ステージで達成", + "UnlockRequirementEn": "Got an S for 725 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3458, + "TitleName": "S級三日月宗近", + "UnlockRequirementJp": "S評価をHARD750ステージで達成", + "UnlockRequirementEn": "Got an S for 750 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3459, + "TitleName": "S級七星剣", + "UnlockRequirementJp": "S評価をHARD775ステージで達成", + "UnlockRequirementEn": "Got an S for 775 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3460, + "TitleName": "S級天叢雲剣", + "UnlockRequirementJp": "S評価をHARD800ステージで達成", + "UnlockRequirementEn": "Got an S for 800 stages in HARD mode", + "UnlockType": 7 + }, + { + "Id": 3461, + "TitleName": "エンジェル", + "UnlockRequirementJp": "NO\u3000MISSを1550ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1550 stages", + "UnlockType": 3 + }, + { + "Id": 3462, + "TitleName": "アークエンジェル", + "UnlockRequirementJp": "NO\u3000MISSを1600ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1600 stages", + "UnlockType": 3 + }, + { + "Id": 3463, + "TitleName": "プリンシパリティ", + "UnlockRequirementJp": "NO\u3000MISSを1650ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1650 stages", + "UnlockType": 3 + }, + { + "Id": 3464, + "TitleName": "パワー", + "UnlockRequirementJp": "NO\u3000MISSを1700ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1700 stages", + "UnlockType": 3 + }, + { + "Id": 3465, + "TitleName": "ヴァーチャー", + "UnlockRequirementJp": "NO\u3000MISSを1750ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1750 stages", + "UnlockType": 3 + }, + { + "Id": 3466, + "TitleName": "ドミニオン", + "UnlockRequirementJp": "NO\u3000MISSを1800ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1800 stages", + "UnlockType": 3 + }, + { + "Id": 3467, + "TitleName": "ソロネ", + "UnlockRequirementJp": "NO\u3000MISSを1850ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1850 stages", + "UnlockType": 3 + }, + { + "Id": 3468, + "TitleName": "ケルビム", + "UnlockRequirementJp": "NO\u3000MISSを1900ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1900 stages", + "UnlockType": 3 + }, + { + "Id": 3469, + "TitleName": "セラフィム", + "UnlockRequirementJp": "NO\u3000MISSを1950ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 1950 stages", + "UnlockType": 3 + }, + { + "Id": 3470, + "TitleName": "サンダルフォン", + "UnlockRequirementJp": "NO\u3000MISSを2000ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2000 stages", + "UnlockType": 3 + }, + { + "Id": 3471, + "TitleName": "ラグエル", + "UnlockRequirementJp": "NO\u3000MISSを2050ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2050 stages", + "UnlockType": 3 + }, + { + "Id": 3472, + "TitleName": "ラジエル", + "UnlockRequirementJp": "NO\u3000MISSを2100ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2100 stages", + "UnlockType": 3 + }, + { + "Id": 3473, + "TitleName": "カマエル", + "UnlockRequirementJp": "NO\u3000MISSを2150ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2150 stages", + "UnlockType": 3 + }, + { + "Id": 3474, + "TitleName": "メタトロン", + "UnlockRequirementJp": "NO\u3000MISSを2200ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2200 stages", + "UnlockType": 3 + }, + { + "Id": 3475, + "TitleName": "ウリエル", + "UnlockRequirementJp": "NO\u3000MISSを2250ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2250 stages", + "UnlockType": 3 + }, + { + "Id": 3476, + "TitleName": "ラファエル", + "UnlockRequirementJp": "NO\u3000MISSを2300ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2300 stages", + "UnlockType": 3 + }, + { + "Id": 3477, + "TitleName": "ガブリエル", + "UnlockRequirementJp": "NO\u3000MISSを2350ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2350 stages", + "UnlockType": 3 + }, + { + "Id": 3478, + "TitleName": "ミカエル", + "UnlockRequirementJp": "NO\u3000MISSを2400ステージで達成", + "UnlockRequirementEn": "Got a NO MISS in 2400 stages", + "UnlockType": 3 + }, + { + "Id": 3479, + "TitleName": "獏", + "UnlockRequirementJp": "FULL\u3000CHAINを1550ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1550 stages", + "UnlockType": 4 + }, + { + "Id": 3480, + "TitleName": "鵺", + "UnlockRequirementJp": "FULL\u3000CHAINを1600ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1600 stages", + "UnlockType": 4 + }, + { + "Id": 3481, + "TitleName": "黒龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1650ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1650 stages", + "UnlockType": 4 + }, + { + "Id": 3482, + "TitleName": "白龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1700ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1700 stages", + "UnlockType": 4 + }, + { + "Id": 3483, + "TitleName": "黄龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1750ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1750 stages", + "UnlockType": 4 + }, + { + "Id": 3484, + "TitleName": "ガルダ", + "UnlockRequirementJp": "FULL\u3000CHAINを1800ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1800 stages", + "UnlockType": 4 + }, + { + "Id": 3485, + "TitleName": "ナーガ", + "UnlockRequirementJp": "FULL\u3000CHAINを1850ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1850 stages", + "UnlockType": 4 + }, + { + "Id": 3486, + "TitleName": "ラークシャサ", + "UnlockRequirementJp": "FULL\u3000CHAINを1900ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1900 stages", + "UnlockType": 4 + }, + { + "Id": 3487, + "TitleName": "ハヌマーン", + "UnlockRequirementJp": "FULL\u3000CHAINを1950ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 1950 stages", + "UnlockType": 4 + }, + { + "Id": 3488, + "TitleName": "ヴリトラ", + "UnlockRequirementJp": "FULL\u3000CHAINを2000ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2000 stages", + "UnlockType": 4 + }, + { + "Id": 3489, + "TitleName": "インドラ", + "UnlockRequirementJp": "FULL\u3000CHAINを2050ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2050 stages", + "UnlockType": 4 + }, + { + "Id": 3490, + "TitleName": "ガネーシャ", + "UnlockRequirementJp": "FULL\u3000CHAINを2100ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2100 stages", + "UnlockType": 4 + }, + { + "Id": 3491, + "TitleName": "サラスヴァティ", + "UnlockRequirementJp": "FULL\u3000CHAINを2150ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2150 stages", + "UnlockType": 4 + }, + { + "Id": 3492, + "TitleName": "アプサラス", + "UnlockRequirementJp": "FULL\u3000CHAINを2200ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2200 stages", + "UnlockType": 4 + }, + { + "Id": 3493, + "TitleName": "カーリー", + "UnlockRequirementJp": "FULL\u3000CHAINを2250ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2250 stages", + "UnlockType": 4 + }, + { + "Id": 3494, + "TitleName": "シヴァ", + "UnlockRequirementJp": "FULL\u3000CHAINを2300ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2300 stages", + "UnlockType": 4 + }, + { + "Id": 3495, + "TitleName": "ヴィシュヌ", + "UnlockRequirementJp": "FULL\u3000CHAINを2350ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2350 stages", + "UnlockType": 4 + }, + { + "Id": 3496, + "TitleName": "ブラフマー", + "UnlockRequirementJp": "FULL\u3000CHAINを2400ステージで達成", + "UnlockRequirementEn": "Got a FULL CHAIN in 2400 stages", + "UnlockType": 4 + }, + { + "Id": 3497, + "TitleName": "DREAM PARTY!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3498, + "TitleName": "夢のパーティーに飛び込もう!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3499, + "TitleName": "GCナビゲーター(バイト)", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3500, + "TitleName": "うわぁ、夢みたい!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3501, + "TitleName": "パ、パ、パ、パーフェクト!?", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3502, + "TitleName": "普通の高校生", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3503, + "TitleName": "期待の新人", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3504, + "TitleName": "ピッチピチ16歳", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3505, + "TitleName": "ふわっふわ15歳", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3506, + "TitleName": "がんばユメちゃん", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3507, + "TitleName": "がんばリンカちゃん!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3508, + "TitleName": "お断ユメちゃん!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3509, + "TitleName": "S\u002B級カニカマ", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3510, + "TitleName": "I love ユメ", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3511, + "TitleName": "3EX", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3512, + "TitleName": "MikuRinGod", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3513, + "TitleName": "ミラクルキュート!", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3514, + "TitleName": "NMMN(ネギミカンミカンネギ)", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3515, + "TitleName": "リンちゃんマジ天使", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3516, + "TitleName": "冬のミクさんマジ天使", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3517, + "TitleName": "S\u002B級ロードローラー", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3518, + "TitleName": "ミクかわいいよミク", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3519, + "TitleName": "「明日はきっと雨だ。」", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3520, + "TitleName": "おやすミクさん!", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3521, + "TitleName": "お断リンちゃん!", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3522, + "TitleName": "「本当の僕はどこに行ったっけ?」", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3523, + "TitleName": "I LOVE 鏡音リン 2016", + "UnlockRequirementJp": "『初音ミク\u0026鏡音リン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3524, + "TitleName": "I love \u0022東京テディベア\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3525, + "TitleName": "今までごめん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3526, + "TitleName": "今までごめん女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3527, + "TitleName": "今までごめん女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3528, + "TitleName": "I love \u0022からくりピエロ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3529, + "TitleName": "からくり先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3530, + "TitleName": "からくり大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3531, + "TitleName": "からくり神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3532, + "TitleName": "I love \u0022深海シティアンダーグラウンド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3533, + "TitleName": "深海シティ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3534, + "TitleName": "深海シティ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3535, + "TitleName": "深海シティ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3536, + "TitleName": "I love \u0022STAGER (ALL STAGE CLEAR)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 3537, + "TitleName": "STAGER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3538, + "TitleName": "STAGER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3539, + "TitleName": "STAGER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 3540, + "TitleName": "I love \u0022無邪気と言う名の正義\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3541, + "TitleName": "死を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3542, + "TitleName": "死を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3543, + "TitleName": "死を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3544, + "TitleName": "I love \u0022KUNG\u3000FU\u3000GIRL\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3545, + "TitleName": "イー・アル・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3546, + "TitleName": "イー・アル・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3547, + "TitleName": "イー・アル・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3548, + "TitleName": "I love \u0022コノハズク\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3549, + "TitleName": " 十人の話を同時に聞くことが出来る太子", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3550, + "TitleName": " 十人の話を同時に聞くことが出来る女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3551, + "TitleName": " 十人の話を同時に聞くことが出来る女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3552, + "TitleName": "I love \u0022君色サブリミナル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3553, + "TitleName": "壁をすり抜けられる程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3554, + "TitleName": "壁をすり抜けられる程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3555, + "TitleName": "壁をすり抜けられる程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3556, + "TitleName": "I love \u0022ハイパーゴアムササビスティックディサピアリジーニャス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3557, + "TitleName": "大☆先☆生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3558, + "TitleName": "大☆王☆様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3559, + "TitleName": "大☆天☆才", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3560, + "TitleName": "I love \u0022あの日の蜃気楼\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3561, + "TitleName": "死してなお、愉しい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3562, + "TitleName": "死してなお、愉しい女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3563, + "TitleName": "死してなお、愉しい女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3564, + "TitleName": "I love \u0022スターオーシャン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3565, + "TitleName": "スターオーシャンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3566, + "TitleName": "スターオーシャンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3567, + "TitleName": "スターオーシャンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3568, + "TitleName": "I love \u0022UFD\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 3569, + "TitleName": "UFD MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3570, + "TitleName": "UFD KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3571, + "TitleName": "UFD GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 3572, + "TitleName": "I love \u0022安全運転♥ムジ娘ちゃん\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3573, + "TitleName": "安全運転♥先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3574, + "TitleName": "安全運転♥女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3575, + "TitleName": "安全運転♥女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3576, + "TitleName": "I love \u0022あのね…実はわたし、夢眠ねむなんだ…♡\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3577, + "TitleName": "あのね…実はわたし、先生なんだ…♡", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3578, + "TitleName": "あのね…実はわたし、女王様なんだ…♡", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3579, + "TitleName": "あのね…実はわたし、女神なんだ…♡", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3580, + "TitleName": "I love \u0022すうぃーと☆プラネット\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3581, + "TitleName": "すうぃーと☆マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3582, + "TitleName": "すうぃーと☆キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3583, + "TitleName": "すうぃーと☆ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3584, + "TitleName": "I love \u0022バトル#2 ~ヒゲドライバーMIX~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3585, + "TitleName": "エストポリス先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3586, + "TitleName": "エストポリス大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3587, + "TitleName": "エストポリス神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3588, + "TitleName": "I love \u0022フルボッコ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3589, + "TitleName": "フルボッコ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3590, + "TitleName": "フルボッコ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3591, + "TitleName": "フルボッコ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3592, + "TitleName": "I love \u0022影の伝説 ~豚乙女mix~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3593, + "TitleName": "影の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3594, + "TitleName": "影の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3595, + "TitleName": "影の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3596, + "TitleName": "化け狸 十変化", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3597, + "TitleName": "聖徳道士", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3598, + "TitleName": "古代日本の尸解仙", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3599, + "TitleName": "神の末裔の亡霊", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3600, + "TitleName": "古の妖怪その1", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3601, + "TitleName": "壁抜けの邪仙", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3602, + "TitleName": "忠実な死体", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3603, + "TitleName": "お困りの忘れ物", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3604, + "TitleName": "たわむれはおわりじゃ", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3605, + "TitleName": "読経するヤマビコ", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3606, + "TitleName": "戸惑わない亡霊", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3607, + "TitleName": "我欲の巫女", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3608, + "TitleName": "死欲の半霊", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3609, + "TitleName": "五欲の巫女", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3610, + "TitleName": "強欲の魔法使い", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3611, + "TitleName": "N・E・M・U・G・O・D", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3612, + "TitleName": "君にネムキュンキュン", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3613, + "TitleName": "輝け!ミドリウム!", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3614, + "TitleName": "ミントグリーンの宇宙", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3615, + "TitleName": "三重の食いしん坊", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3616, + "TitleName": "Pureな乙女(бωб)", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3617, + "TitleName": "夢眠軒の常連", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3618, + "TitleName": "S\u002B級ワンタン麺", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3619, + "TitleName": "ラブリーテクニシャン", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3620, + "TitleName": "セクシーポリティシャン", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3621, + "TitleName": "安全運転\u3000お願いね", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3622, + "TitleName": "I love たぬきゅん", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3623, + "TitleName": "おにぎりむしゃ~り!", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3624, + "TitleName": "ユメミスト", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3625, + "TitleName": "I love 夢眠ネム", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3626, + "TitleName": "piggy", + "UnlockRequirementJp": "『豚乙女』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3627, + "TitleName": "I love 豚乙女", + "UnlockRequirementJp": "『豚乙女』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3628, + "TitleName": "第四ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3629, + "TitleName": "第五ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3630, + "TitleName": "第六ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3631, + "TitleName": "I love \u0022MERLIN\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3632, + "TitleName": "MERLIN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3633, + "TitleName": "MERLIN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3634, + "TitleName": "MERLIN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3635, + "TitleName": "I love \u0022MAD FREAKS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3636, + "TitleName": "MAD MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3637, + "TitleName": "MAD KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3638, + "TitleName": "MAD GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3639, + "TitleName": "I love \u0022Good Night, Bad Luck.\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3640, + "TitleName": "Good Night, Bad Master.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3641, + "TitleName": "Good Night, Bad King.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3642, + "TitleName": "Good Night, Bad God.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3643, + "TitleName": "I love \u0022MIRACLE PARTY\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3644, + "TitleName": "MIRACLE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3645, + "TitleName": "MIRACLE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3646, + "TitleName": "MIRACLE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3647, + "TitleName": "I love \u0022Ever Free\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3648, + "TitleName": "Ever Free Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3649, + "TitleName": "Ever Free King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3650, + "TitleName": "Ever Free God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3651, + "TitleName": "I love \u0022Extra Mode\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3652, + "TitleName": "Extra Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3653, + "TitleName": "Extra King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3654, + "TitleName": "Extra God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3655, + "TitleName": "I love \u0022初音ミクの暴走\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3656, + "TitleName": "つるぺた先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3657, + "TitleName": "つるぺた女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3658, + "TitleName": "つるぺた女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3659, + "TitleName": "I love \u0022メイドと血の懐中時計\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3660, + "TitleName": "メイド先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3661, + "TitleName": "メイド王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3662, + "TitleName": "メイド神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3663, + "TitleName": "I love \u0022月夜ノ森\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3664, + "TitleName": "月夜ノ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3665, + "TitleName": "月夜ノ王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3666, + "TitleName": "月夜ノ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3667, + "TitleName": "I love \u0022恋愛裁判\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3668, + "TitleName": "恋愛裁判長", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3669, + "TitleName": "恋愛裁判王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3670, + "TitleName": "恋愛裁判神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3671, + "TitleName": "I love \u0022Future Coaster\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3672, + "TitleName": "Future Coaster Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3673, + "TitleName": "Future Coaster King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3674, + "TitleName": "Future Coaster God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3675, + "TitleName": "I love \u0022脱獄\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3676, + "TitleName": "脱獄先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3677, + "TitleName": "脱獄王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3678, + "TitleName": "脱獄神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3679, + "TitleName": "I love \u0022千のクロマ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 3680, + "TitleName": "千の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3681, + "TitleName": "千の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3682, + "TitleName": "千の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 3683, + "TitleName": "I love \u0022Linear Accelerator\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 3684, + "TitleName": "Linear Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3685, + "TitleName": "Linear King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 3686, + "TitleName": "Linear God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 3687, + "TitleName": "TANO*C GOD", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3688, + "TitleName": "TANO*C KING", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3689, + "TitleName": "TANO*C MASTER", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3690, + "TitleName": "HARDCORE SYNDROME", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3691, + "TitleName": "たのしー!", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3692, + "TitleName": "狂乱を、味わえ", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3693, + "TitleName": "重低音モンスター", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3694, + "TitleName": "逆鱗に触れろ", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3695, + "TitleName": "紅の魔術師", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3696, + "TitleName": "悪夢再び", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3697, + "TitleName": "α", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3698, + "TitleName": "Are you ready?", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3699, + "TitleName": "発狂大魔人", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3700, + "TitleName": "果て無き最狂進化", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3701, + "TitleName": "Ever…", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3702, + "TitleName": "I love HARDCORE TANO*C", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3703, + "TitleName": "MikuLenGod", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3704, + "TitleName": "伝説のマスター", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3705, + "TitleName": "レンきゅんマジ天使", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3706, + "TitleName": "「幼女の世界」", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3707, + "TitleName": "ドウニデモ=ナ=レ(76)", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3708, + "TitleName": "年中イキっていこう~", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3709, + "TitleName": "決シテ逃レルコトノデキヌ夜", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3710, + "TitleName": "有\u3000罪", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3711, + "TitleName": "夏だ!海だ!初音ミク", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3712, + "TitleName": "ほら すぐ キメるぜ!", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3713, + "TitleName": "ほっぺたぷにぷに", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3714, + "TitleName": "Oh! Jesus!", + "UnlockRequirementJp": "『初音ミク\u0026鏡音レン』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3715, + "TitleName": "I love Tone Sphere", + "UnlockRequirementJp": "『Tone Sphere』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3716, + "TitleName": "世界で一番宇宙で銀河", + "UnlockRequirementJp": "『Tone Sphere』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3717, + "TitleName": "とんすひ勢", + "UnlockRequirementJp": "『Tone Sphere』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3718, + "TitleName": "I love \u0022ようこそジャパリパークへ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 3719, + "TitleName": "わーい!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3720, + "TitleName": "すっごーい!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 3721, + "TitleName": "うー!がぉー!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 3722, + "TitleName": "I love \u0022Border of Colour\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3723, + "TitleName": "天衣無縫の亡霊", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3724, + "TitleName": "天衣無縫の幻霊", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3725, + "TitleName": "天衣無縫の神霊", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3726, + "TitleName": "I love \u0022ジョーカー・ジュンコ ~ 永遠の純化\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3727, + "TitleName": "無名の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3728, + "TitleName": "無名の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3729, + "TitleName": "無名の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3730, + "TitleName": "I love \u0022DIVINE PLACE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3731, + "TitleName": "DIVINE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3732, + "TitleName": "DIVINE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3733, + "TitleName": "DIVINE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3734, + "TitleName": "I love \u0022幻想の旅人へ ~ Catch the Heart\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3735, + "TitleName": "Master 1969", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3736, + "TitleName": "King 1969", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3737, + "TitleName": "God 1969", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3738, + "TitleName": "I love \u0022tete\u002Ba\u002Btete\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3739, + "TitleName": "おぜう", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3740, + "TitleName": "おぜうさま", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3741, + "TitleName": "お嬢様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3742, + "TitleName": "I love \u0022Sad Rain\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3743, + "TitleName": "南無三先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3744, + "TitleName": "南無三大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3745, + "TitleName": "南無三神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3746, + "TitleName": "I love \u0022Gloria\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3747, + "TitleName": "フィギュアヘッズ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3748, + "TitleName": "フィギュアヘッズ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3749, + "TitleName": "フィギュアヘッズ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3750, + "TitleName": "I love \u0022ENDLESS DREAM -GC Mix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3751, + "TitleName": "ENDLESS DREAM MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3752, + "TitleName": "ENDLESS DREAM KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3753, + "TitleName": "ENDLESS DREAM GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3754, + "TitleName": "I love \u0022燃えるハロウィンタウン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3755, + "TitleName": "ハロウィンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3756, + "TitleName": "ハロウィンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3757, + "TitleName": "ハロウィンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3758, + "TitleName": "I love \u0022Can\u0027t come back?\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3759, + "TitleName": "UNDER DEFEAT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3760, + "TitleName": "UNDER DEFEAT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3761, + "TitleName": "UNDER DEFEAT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3762, + "TitleName": "I love \u0022AXION\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 3763, + "TitleName": "AXION FIGHTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3764, + "TitleName": "AXION SORCERER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 3765, + "TitleName": "AXION KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 3766, + "TitleName": "I love \u0022RAVE WAR\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3767, + "TitleName": "RAVE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3768, + "TitleName": "RAVE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3769, + "TitleName": "RAVE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3770, + "TitleName": "I love \u0022Lightning strikes\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3771, + "TitleName": "Lightning master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3772, + "TitleName": "Lightning king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3773, + "TitleName": "Lightning god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3774, + "TitleName": "I love \u0022バーニングフォースメドレー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3775, + "TitleName": "バーニングフォースマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3776, + "TitleName": "バーニングフォースキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3777, + "TitleName": "バーニングフォースゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3778, + "TitleName": "I love \u0022PaⅢ.SENSATION\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3779, + "TitleName": "PaⅢ.MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3780, + "TitleName": "PaⅢ.KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3781, + "TitleName": "PaⅢ.GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3782, + "TitleName": "I love \u0022チルノのパーフェクトさんすう教室\u30009周年\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3783, + "TitleName": "9周年先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3784, + "TitleName": "9周年大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3785, + "TitleName": "9周年神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3786, + "TitleName": "I love \u0022フロストガール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3787, + "TitleName": "フロストマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3788, + "TitleName": "フロストキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3789, + "TitleName": "フロストゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3790, + "TitleName": "AUG, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3791, + "TitleName": "SEP, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3792, + "TitleName": "OCT, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3793, + "TitleName": "NOV, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3794, + "TitleName": "DEC, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3795, + "TitleName": "JAN, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3796, + "TitleName": "FEB, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3797, + "TitleName": "MAR, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3798, + "TitleName": "APR, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3799, + "TitleName": "MAY, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3800, + "TitleName": "JUN, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3801, + "TitleName": "JUL, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3802, + "TitleName": "第七ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3803, + "TitleName": "第八ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3804, + "TitleName": "第九ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3805, + "TitleName": "第十ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 3806, + "TitleName": "東方六楽抄", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3807, + "TitleName": "「紅色の幻想郷」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3808, + "TitleName": "「反魂蝶 -八分咲-」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3809, + "TitleName": "「永夜返し -世明け」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3810, + "TitleName": "「風神様の神徳」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3811, + "TitleName": "純符「純粋な弾幕地獄」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3812, + "TitleName": "超人「聖白蓮」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3813, + "TitleName": "神宝「蓬莱の玉の枝 -夢色の郷-」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3814, + "TitleName": "神術「吸血鬼幻想」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3815, + "TitleName": "仙符「日出ずる処の天子」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3816, + "TitleName": "神秘「ヤマトトーラス」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3817, + "TitleName": "華霊「バタフライディルージョン」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3818, + "TitleName": "爆符「ペタフレア」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3819, + "TitleName": "奇術「エターナルミーク」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3820, + "TitleName": "小槌「お前が大きくなあれ」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3821, + "TitleName": "薬符「壺中の大銀河」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3822, + "TitleName": "エース", + "UnlockRequirementJp": "『フィギュアヘッズ エース』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3823, + "TitleName": "フィギュアヘッズ勢", + "UnlockRequirementJp": "『フィギュアヘッズ エース』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3824, + "TitleName": "二代目超シューティング神", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3825, + "TitleName": "蘇る赤いクリスタル", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3826, + "TitleName": "栄光のスペースファイター", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3827, + "TitleName": "ブローン自走要塞", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3828, + "TitleName": "衝撃のIMPULSE,ゆらめくMIRAGE", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3829, + "TitleName": "魔界帝王", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3830, + "TitleName": "RED ALERT", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3831, + "TitleName": "我が駆るは、天翔る鉄騎兵", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3832, + "TitleName": "砕ける前に撃て!!", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3833, + "TitleName": "招かれざりし者", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3834, + "TitleName": "雷の系譜", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3835, + "TitleName": "VKL5.03", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3836, + "TitleName": "ジルバラードのエンジェル", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3837, + "TitleName": "空間騎兵", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3838, + "TitleName": "Get down everybody!", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3839, + "TitleName": "ゆっくりしていってね!", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3840, + "TitleName": "バーカバーカ!", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3841, + "TitleName": "あたいったら最強ね!", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3842, + "TitleName": "I love チルノ", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3843, + "TitleName": "I love \u0022Penetration of light into morality\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3844, + "TitleName": "RAY FORCE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3845, + "TitleName": "RAY FORCE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3846, + "TitleName": "RAY FORCE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3847, + "TitleName": "I love \u0022恋愛勇者\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3848, + "TitleName": "恋愛勇者", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3849, + "TitleName": "恋愛王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3850, + "TitleName": "恋愛神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3851, + "TitleName": "I love \u0022飛び立て!ドリームパーティー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3852, + "TitleName": "ドリームパーティーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3853, + "TitleName": "ドリームパーティーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3854, + "TitleName": "ドリームパーティーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3855, + "TitleName": "I love \u0022ラベンダーの咲く庭-Progressive Flute Ver.-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3856, + "TitleName": "RAY CRISIS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3857, + "TitleName": "RAY CRISIS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3858, + "TitleName": "RAY CRISIS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3859, + "TitleName": "I love \u0022小夜のテーマ ~とぱぞのアレンジ~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 3860, + "TitleName": "小夜ちゃん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3861, + "TitleName": "小夜ちゃん女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 3862, + "TitleName": "小夜ちゃん女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 3863, + "TitleName": "I love \u0022九十九星降\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3864, + "TitleName": "九十九姉妹", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3865, + "TitleName": "九十九大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3866, + "TitleName": "付喪神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3867, + "TitleName": "I love \u0022APELIOTES\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3868, + "TitleName": "APELIOTES MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3869, + "TitleName": "APELIOTES KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3870, + "TitleName": "APELIOTES", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3871, + "TitleName": "I love \u0022東方輝仁裂\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3872, + "TitleName": "雷先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3873, + "TitleName": "雷王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3874, + "TitleName": "雷神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3875, + "TitleName": "I love \u0022マーメイドダンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3876, + "TitleName": "水中だと力が増す先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3877, + "TitleName": "水中だと力が増す女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3878, + "TitleName": "水中だと力が増す人魚", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3879, + "TitleName": "I love \u0022DullaRush\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3880, + "TitleName": "DullaMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3881, + "TitleName": "DullaQueen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3882, + "TitleName": "DullaGoddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3883, + "TitleName": "I love \u0022ouroboros -twin stroke of the end-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3884, + "TitleName": "ouroboros master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3885, + "TitleName": "ouroboros king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3886, + "TitleName": "ouroboros god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3887, + "TitleName": "I love \u0022Grow Bigger!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3888, + "TitleName": "輝く針の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3889, + "TitleName": "輝く針の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3890, + "TitleName": "輝く針のリリパット", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3891, + "TitleName": "I love \u0022Caramel Mocha\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3892, + "TitleName": "Caramel Mocha Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3893, + "TitleName": "Caramel Mocha King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3894, + "TitleName": "Caramel Mocha God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3895, + "TitleName": "I love \u0022LIMIT BURST\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3896, + "TitleName": "なにもかも逆さまな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3897, + "TitleName": "なにもかも逆さまな女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3898, + "TitleName": "なにもかも逆さまな女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3899, + "TitleName": "I love \u0022Crazy ∞ NighT\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3900, + "TitleName": "Crazy ∞ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3901, + "TitleName": "Crazy ∞ Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3902, + "TitleName": "Crazy ∞ Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3903, + "TitleName": "I love \u0022Lethal Dose\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3904, + "TitleName": "Lethal Dose Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3905, + "TitleName": "Lethal Dose King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3906, + "TitleName": "Lethal Dose God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3907, + "TitleName": "I love \u0022GLITHCRE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3908, + "TitleName": "GLITHCRE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3909, + "TitleName": "GLITHCRE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3910, + "TitleName": "GLITHCRE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3911, + "TitleName": "infinity", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3912, + "TitleName": "ユグドラシル", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3913, + "TitleName": "ダークコンヒューマン", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3914, + "TitleName": "七福神", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3915, + "TitleName": "夢に向かって飛び立て!", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3916, + "TitleName": "dis-human", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3917, + "TitleName": "ペンドラゴン", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3918, + "TitleName": "デュアルランス", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3919, + "TitleName": "迫り来る未来の選択", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3920, + "TitleName": "魔奴化", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3921, + "TitleName": "最高の舞台を目指せ!", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3922, + "TitleName": "ALERT", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3923, + "TitleName": "I love Ray series", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3924, + "TitleName": "LOCK", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3925, + "TitleName": "下剋上", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3926, + "TitleName": "何でもリズムに乗らせる程度の能力", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3927, + "TitleName": "夢幻のパーカッショニスト", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3928, + "TitleName": "小人の末裔", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3929, + "TitleName": "逆襲のあまのじゃく", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3930, + "TitleName": "古びた琴の付喪神", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3931, + "TitleName": "古びた琵琶の付喪神", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3932, + "TitleName": "草の根妖怪ネットワーク", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3933, + "TitleName": "小槌「大きくなあれ」", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3934, + "TitleName": "竹林のルーガルー", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3935, + "TitleName": "ろくろ首の怪奇", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3936, + "TitleName": "淡水に棲む人魚", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3937, + "TitleName": "赤い悪魔のメイド", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3938, + "TitleName": "I love ATTACK THE MUSIC", + "UnlockRequirementJp": "『ATTACK THE MUSIC』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 3939, + "TitleName": "第四回天下一チャレンジャー", + "UnlockRequirementJp": "対象曲を1回プレイ", + "UnlockRequirementEn": "Play a set song 1 times", + "UnlockType": 12 + }, + { + "Id": 3940, + "TitleName": "第四回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第四回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEn": "第四回天下一音ゲ祭全国頂上決戦進出", + "UnlockType": 12 + }, + { + "Id": 3941, + "TitleName": "第四回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第四回天下一音ゲ祭優勝", + "UnlockRequirementEn": "第四回天下一音ゲ祭優勝", + "UnlockType": 12 + }, + { + "Id": 3942, + "TitleName": "I love \u0022AM貴族\u3000すたどんたん殿下\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3943, + "TitleName": "AM貴族\u3000すたどんたん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3944, + "TitleName": "AM貴族\u3000すたどんたん女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3945, + "TitleName": "AM貴族\u3000すたどんたん女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3946, + "TitleName": "I love \u0022完全の模様を刳り貫いて\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3947, + "TitleName": "団子を食べる程に強くなる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3948, + "TitleName": "団子を食べる程に強くなる女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3949, + "TitleName": "団子を食べる程に強くなる女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3950, + "TitleName": "I love \u0022Singularity\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3951, + "TitleName": "Singularity Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3952, + "TitleName": "Singularity King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3953, + "TitleName": "Singularity God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3954, + "TitleName": "I love \u0022シンドイ・ザ・ライド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3955, + "TitleName": "シンドイ・ザ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3956, + "TitleName": "シンドイ・ザ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3957, + "TitleName": "シンドイ・ザ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3958, + "TitleName": "I love \u0022Got recover run\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3959, + "TitleName": "Groove current", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3960, + "TitleName": "King of Groove current", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3961, + "TitleName": "God recover run", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3962, + "TitleName": "I love \u0022LOVE FOR YOU\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3963, + "TitleName": "緑眼の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3964, + "TitleName": "緑眼の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3965, + "TitleName": "緑眼のジェラシー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3966, + "TitleName": "I love \u0022いろは唄\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3967, + "TitleName": "イロハニホヘト マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3968, + "TitleName": "イロハニホヘト クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3969, + "TitleName": "イロハニホヘト ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3970, + "TitleName": "I love \u0022ADRENA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3971, + "TitleName": "ADRENA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3972, + "TitleName": "ADRENA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3973, + "TitleName": "ADRENA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3974, + "TitleName": "I love \u0022六兆年と一夜物語\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3975, + "TitleName": "名も無い幼い少年", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3976, + "TitleName": "名も無い幼い王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3977, + "TitleName": "名も無い幼い神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3978, + "TitleName": "I love \u0022Reload\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3979, + "TitleName": "Reload Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3980, + "TitleName": "Reload King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3981, + "TitleName": "Reload God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3982, + "TitleName": "I love \u0022東方双地舞\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 3983, + "TitleName": "双地舞先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3984, + "TitleName": "双地舞大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 3985, + "TitleName": "双地舞神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 3986, + "TitleName": "I love \u0022ビットチューン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3987, + "TitleName": "ビットチューン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3988, + "TitleName": "ビットチューン クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3989, + "TitleName": "ビットチューン ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3990, + "TitleName": "I love \u0022おねがいダーリン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 3991, + "TitleName": "おねがい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3992, + "TitleName": "おねがい王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 3993, + "TitleName": "おねがい神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 3994, + "TitleName": "I love \u0022全人類犬化計画\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3995, + "TitleName": "犬先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3996, + "TitleName": "犬大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 3997, + "TitleName": "犬神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 3998, + "TitleName": "I love \u0022聖者の覚醒\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 3999, + "TitleName": "覚醒先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4000, + "TitleName": "覚醒大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4001, + "TitleName": "覚醒神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4002, + "TitleName": "I love \u0022Shiny★STARS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4003, + "TitleName": "Shiny★STARS Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4004, + "TitleName": "Shiny★STARS King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4005, + "TitleName": "Shiny★STARS God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4006, + "TitleName": "私のことは殿下と呼びたまえ!", + "UnlockRequirementJp": "『ずんどこどんつくすたどんたん』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4007, + "TitleName": "Don\u0027t stop funky music!", + "UnlockRequirementJp": "『ずんどこどんつくすたどんたん』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4008, + "TitleName": "クリスマスパーティーマスター", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4009, + "TitleName": "聖なるグルーヴァー", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4010, + "TitleName": "メリーグルコスシマス!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4011, + "TitleName": "S\u002B級クリスマスツリー", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4012, + "TitleName": "尊い・・・", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4013, + "TitleName": "メリクリンカちゃん!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4014, + "TitleName": "メリクリユメちゃん!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4015, + "TitleName": "S\u002B級ブッシュ・ド・ノエル", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4016, + "TitleName": "S\u002B級ローストチキン", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4017, + "TitleName": "しんどい", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4018, + "TitleName": "S\u002B級ゆきだるま", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4019, + "TitleName": "無理", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4020, + "TitleName": "ジングルベル!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4021, + "TitleName": "つらい", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4022, + "TitleName": "メリークルシミマス!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4023, + "TitleName": "メリークリスマス!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4024, + "TitleName": "導きのARIA", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4025, + "TitleName": "癒しの歌姫", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4026, + "TitleName": "仲良し姉妹", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4027, + "TitleName": "天然ボケ", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4028, + "TitleName": "甘えん坊", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4029, + "TitleName": "「馬鹿じゃないの?」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4030, + "TitleName": "「おねだりしてみてほしいの」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4031, + "TitleName": "「荒ぶる戦士」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4032, + "TitleName": "「燃やせ 燃やせ その心を」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4033, + "TitleName": "「一緒に帰ろう」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4034, + "TitleName": "「ちゃんとこっち向いてったら」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4035, + "TitleName": "「未熟な暴れ者」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4036, + "TitleName": "「叫べ 叫べ 遠くへ」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4037, + "TitleName": "「誰も知らない おとぎばなし」", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4038, + "TitleName": "I love ONE 2017", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4039, + "TitleName": "I love IA 2017", + "UnlockRequirementJp": "『IA\u0026ONE 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4040, + "TitleName": "I love \u0022だってだってだって\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4041, + "TitleName": "だってだってだって先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4042, + "TitleName": "だってだってだって女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4043, + "TitleName": "だってだってだって女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4044, + "TitleName": "I love \u0022パンダヒーロー\u0022 !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4045, + "TitleName": "金属バット先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4046, + "TitleName": "金属バット大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4047, + "TitleName": "金属バット神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4048, + "TitleName": "I love \u0022イニシャルイニシャルエコーエゴー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4049, + "TitleName": "ヤマビコ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4050, + "TitleName": "ヤマビコ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4051, + "TitleName": "ヤマビコ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4052, + "TitleName": "I love \u0022しわ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4053, + "TitleName": "しわ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4054, + "TitleName": "しわ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4055, + "TitleName": "しわ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4056, + "TitleName": "I love \u0022Miraculous Encounter\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4057, + "TitleName": "Miraculous Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4058, + "TitleName": "Miraculous King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4059, + "TitleName": "Miraculous God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4060, + "TitleName": "I love \u0022マーメイド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4061, + "TitleName": "マーメイド マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4062, + "TitleName": "マーメイド クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4063, + "TitleName": "マーメイド ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4064, + "TitleName": "I love \u0022マトリョシカ\u0022 !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4065, + "TitleName": "継ぎ接ぎ狂った先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4066, + "TitleName": "継ぎ接ぎ狂った大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4067, + "TitleName": "継ぎ接ぎ狂った神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4068, + "TitleName": "七色の歌姫", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4069, + "TitleName": "青春の1ページ", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4070, + "TitleName": "英語ペラペラ", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4071, + "TitleName": "「僕は幸せだ。」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4072, + "TitleName": "「tick ti ti tick」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4073, + "TitleName": "「ただただ\u3000魅了されている!」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4074, + "TitleName": "「あなたと私でランデブー?」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4075, + "TitleName": "「だって、、」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4076, + "TitleName": "「I won\u0027t let you go」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4077, + "TitleName": "「パッパッパラッパパパラパ」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4078, + "TitleName": "「Remember」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4079, + "TitleName": "「惑、惑星が飛び出す」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4080, + "TitleName": "「なんで???」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4081, + "TitleName": "「さらば 一昨日殺人ライナー」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4082, + "TitleName": "「あのね、もっといっぱい舞って頂戴」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4083, + "TitleName": "I love Xenoa", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4084, + "TitleName": "I love DJ MURASAME", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4085, + "TitleName": "I love 世阿弥", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4086, + "TitleName": "I love Tatsh", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4087, + "TitleName": "DENEB", + "UnlockRequirementJp": "トロフィーを550個獲得", + "UnlockRequirementEn": "Get 550 trophies", + "UnlockType": 30 + }, + { + "Id": 4088, + "TitleName": "SPICA", + "UnlockRequirementJp": "トロフィーを600個獲得", + "UnlockRequirementEn": "Get 600 trophies", + "UnlockType": 30 + }, + { + "Id": 4089, + "TitleName": "ANTARES", + "UnlockRequirementJp": "トロフィーを650個獲得", + "UnlockRequirementEn": "Get 650 trophies", + "UnlockType": 30 + }, + { + "Id": 4090, + "TitleName": "ALDEBARAN", + "UnlockRequirementJp": "トロフィーを700個獲得", + "UnlockRequirementEn": "Get 700 trophies", + "UnlockType": 30 + }, + { + "Id": 4091, + "TitleName": "ALTAIR", + "UnlockRequirementJp": "トロフィーを750個獲得", + "UnlockRequirementEn": "Get 750 trophies", + "UnlockType": 30 + }, + { + "Id": 4092, + "TitleName": "PROCYON", + "UnlockRequirementJp": "トロフィーを800個獲得", + "UnlockRequirementEn": "Get 800 trophies", + "UnlockType": 30 + }, + { + "Id": 4093, + "TitleName": "CAPELLA", + "UnlockRequirementJp": "トロフィーを850個獲得", + "UnlockRequirementEn": "Get 850 trophies", + "UnlockType": 30 + }, + { + "Id": 4094, + "TitleName": "VEGA", + "UnlockRequirementJp": "トロフィーを900個獲得", + "UnlockRequirementEn": "Get 900 trophies", + "UnlockType": 30 + }, + { + "Id": 4095, + "TitleName": "CANOPUS", + "UnlockRequirementJp": "トロフィーを950個獲得", + "UnlockRequirementEn": "Get 950 trophies", + "UnlockType": 30 + }, + { + "Id": 4096, + "TitleName": "SERIUS", + "UnlockRequirementJp": "トロフィーを1000個獲得", + "UnlockRequirementEn": "Get 1000 trophies", + "UnlockType": 30 + }, + { + "Id": 4097, + "TitleName": "I love \u0022トラウマレコーダー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4098, + "TitleName": "トラウママスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4099, + "TitleName": "トラウマキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4100, + "TitleName": "トラウマゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4101, + "TitleName": "I love \u0022Secret Answer\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4102, + "TitleName": "XYZ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4103, + "TitleName": "XYZ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4104, + "TitleName": "XYZ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4105, + "TitleName": "I love \u0022fake town baby\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4106, + "TitleName": "血界先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4107, + "TitleName": "血界王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4108, + "TitleName": "血界神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4109, + "TitleName": "I love \u0022アンノウン・マザーグース\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4110, + "TitleName": "アンノウン・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4111, + "TitleName": "アンノウン・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4112, + "TitleName": "アンノウン・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4113, + "TitleName": "I love \u0022あるいは夢眠ねむという概念へのサクシード \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4114, + "TitleName": "あるいは先生という概念へのサクシード", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4115, + "TitleName": "あるいは王という概念へのサクシード", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4116, + "TitleName": "あるいは神という概念へのサクシード", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4117, + "TitleName": "I love \u0022チュルリラ・チュルリラ・ダッダッダ! \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4118, + "TitleName": "チュルリラ・チュルリラ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4119, + "TitleName": "チュルリラ・チュルリラ・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4120, + "TitleName": "チュルリラ・チュルリラ・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4121, + "TitleName": "I love \u0022アマノジャック \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4122, + "TitleName": "ひよっこアマノジャク", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4123, + "TitleName": "伝説のアマノジャク", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4124, + "TitleName": "神話のアマノジャク", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4125, + "TitleName": "I love \u0022Treasure\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4126, + "TitleName": "Treasure Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4127, + "TitleName": "Treasure King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4128, + "TitleName": "Treasure God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4129, + "TitleName": "I love \u0022GROOVE IT LUCKY \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4130, + "TitleName": "厄先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4131, + "TitleName": "厄王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4132, + "TitleName": "厄神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4133, + "TitleName": "I love \u0022Bad Apple!! feat. nomico\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4134, + "TitleName": "Bad Apple!! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4135, + "TitleName": "Bad Apple!! King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4136, + "TitleName": "Bad Apple!! God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4137, + "TitleName": "I love \u0022cyanine\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4138, + "TitleName": "cyanine master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4139, + "TitleName": "cyanine king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4140, + "TitleName": "cyanine god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4141, + "TitleName": "I love \u0022Frey\u0027s Philosophy\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4142, + "TitleName": "Frey\u0027s Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4143, + "TitleName": "Frey\u0027s King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4144, + "TitleName": "Frey\u0027s God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4145, + "TitleName": "I love \u0022ナムコットメドレー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4146, + "TitleName": "ナムコットメドレー・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4147, + "TitleName": "ナムコットメドレー・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4148, + "TitleName": "ナムコットメドレー・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4149, + "TitleName": "I love \u0022君のStarlight Road\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4150, + "TitleName": "Starlight Road Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4151, + "TitleName": "Starlight Road King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4152, + "TitleName": "Starlight Road God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4153, + "TitleName": "I love \u0022Horizons\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4154, + "TitleName": "Horizons Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4155, + "TitleName": "Horizons King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4156, + "TitleName": "Horizons God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4157, + "TitleName": "I love \u0022Wandering One\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4158, + "TitleName": "Wandering Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4159, + "TitleName": "Wandering King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4160, + "TitleName": "Wandering God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4161, + "TitleName": "I love \u0022FM音源黙示録\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4162, + "TitleName": "FM音源先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4163, + "TitleName": "FM音源大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4164, + "TitleName": "FM音源神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4165, + "TitleName": "I love \u0022JUMPEE!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4166, + "TitleName": "JUMPEE! MASTER!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4167, + "TitleName": "JUMPEE! KING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4168, + "TitleName": "JUMPEE! GOD!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4169, + "TitleName": "I love \u0022トリノコシティ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4170, + "TitleName": "トリノコシティ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4171, + "TitleName": "トリノコシティ・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4172, + "TitleName": "トリノコシティ・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4173, + "TitleName": "I love \u0022Got more raves? -xiRemix-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4174, + "TitleName": "Groove master? -xiRemix-", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4175, + "TitleName": "King of Groove master? -xiRemix-", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4176, + "TitleName": "God more raves? -xiRemix-", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4177, + "TitleName": "I love \u0022Ψ発見伝!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4178, + "TitleName": "Ψ発見伝!マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4179, + "TitleName": "Ψ発見伝!キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4180, + "TitleName": "Ψ発見伝!ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4181, + "TitleName": "I love \u0022Crimson Phoenix\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4182, + "TitleName": "Crimson Phoenix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4183, + "TitleName": "Crimson Phoenix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4184, + "TitleName": "Crimson Phoenix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4185, + "TitleName": "宇宙を救うのはやっぱり、でんぱ組.inc!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4186, + "TitleName": "上上下下ABAB", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4187, + "TitleName": "もっと愛してー!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4188, + "TitleName": "君にねむきゅんきゅん!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4189, + "TitleName": "わぁーい!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4190, + "TitleName": "子供じゃないも~ん!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4191, + "TitleName": "彼女とデートなうって使っていいよ。", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4192, + "TitleName": "カワウソに似ててもいいよね?", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4193, + "TitleName": "イラストも描けちゃうあなたの彼女♡", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4194, + "TitleName": "歌って描けるポンコツカワウソ", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4195, + "TitleName": "I love 新生『でんぱ組.inc』", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4196, + "TitleName": "I love \u0022Specta\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4197, + "TitleName": "Specta Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4198, + "TitleName": "Specta King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4199, + "TitleName": "Specta God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4200, + "TitleName": "I love \u00227 days a week\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4201, + "TitleName": "火水木金土日月先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4202, + "TitleName": "火水木金土日月大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4203, + "TitleName": "火水木金土日月神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4204, + "TitleName": "I love \u0022TODAY THE FUTURE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4205, + "TitleName": "TODAY THE FUTURE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4206, + "TitleName": "TODAY THE FUTURE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4207, + "TitleName": "TODAY THE FUTURE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4208, + "TitleName": "I love \u0022You are the Miserable\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4209, + "TitleName": "You are the Miserable Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4210, + "TitleName": "You are the Miserable King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4211, + "TitleName": "You are the Miserable God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4212, + "TitleName": "I love \u0022Androgynos\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4213, + "TitleName": "Androgynos Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4214, + "TitleName": "Androgynos King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4215, + "TitleName": "Androgynos God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4216, + "TitleName": "I love \u0022孤独な花\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4217, + "TitleName": " 聖域を作る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4218, + "TitleName": " 聖域を作る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4219, + "TitleName": " 聖域を作る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4220, + "TitleName": "I love \u0022焼痕煉黑、冷艶ノ絶\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4221, + "TitleName": "溶けない炎天下の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4222, + "TitleName": "溶けない炎天下の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4223, + "TitleName": "溶けない炎天下の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4224, + "TitleName": "I love \u0022揺蕩うLove\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4225, + "TitleName": "揺蕩う先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4226, + "TitleName": "揺蕩う女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4227, + "TitleName": "揺蕩う女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4228, + "TitleName": "I love \u0022宵闇鳥\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4229, + "TitleName": " 歌で人を狂わせる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4230, + "TitleName": " 歌で人を狂わせる女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4231, + "TitleName": " 歌で人を狂わせる女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4232, + "TitleName": "I love \u0022IN MY LIFE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4233, + "TitleName": "IN MY LIFE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4234, + "TitleName": "IN MY LIFE QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4235, + "TitleName": "IN MY LIFE GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4236, + "TitleName": "I love \u0022クレープが食べたい\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4237, + "TitleName": "クレープが食べたい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4238, + "TitleName": "クレープが食べたい女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4239, + "TitleName": "クレープが食べたい女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4240, + "TitleName": "I love \u0022あさき夢眠シ\u3000恋模様\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4241, + "TitleName": "あさき夢眠シ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4242, + "TitleName": "あさき夢眠シ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4243, + "TitleName": "あさき夢眠シ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4244, + "TitleName": "I love \u0022領域のカナタVIIICELL\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4245, + "TitleName": "領域のカナタVIIICELL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4246, + "TitleName": "領域のカナタVIIICELL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4247, + "TitleName": "領域のカナタVIIICELL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4248, + "TitleName": "I love \u002239みゅーじっく!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4249, + "TitleName": "39みゅーじっく! ますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4250, + "TitleName": "39みゅーじっく! くいーん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4251, + "TitleName": "39みゅーじっく! ごっです", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4252, + "TitleName": "I love \u0022千本桜\u0022 !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4253, + "TitleName": "ハイカラ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4254, + "TitleName": "ハイカラ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4255, + "TitleName": "ハイカラ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4256, + "TitleName": "I love \u0022ボロボロだ \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4257, + "TitleName": "ボロボロ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4258, + "TitleName": "ボロボロ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4259, + "TitleName": "ボロボロ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4260, + "TitleName": "I love \u0022快晴 \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4261, + "TitleName": "快晴先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4262, + "TitleName": "快晴大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4263, + "TitleName": "快晴神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4264, + "TitleName": "I love \u0022アンハッピーリフレイン \u0022 !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4265, + "TitleName": "リフレインマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4266, + "TitleName": "リフレインキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4267, + "TitleName": "リフレインゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4268, + "TitleName": "I love \u0022Black or White \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4269, + "TitleName": "Black or White Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4270, + "TitleName": "Black or White King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4271, + "TitleName": "Black or White God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4272, + "TitleName": "音律に祝福されし者", + "UnlockRequirementJp": "『Lanota』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4273, + "TitleName": "I love Lanota", + "UnlockRequirementJp": "『Lanota』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4274, + "TitleName": "東方弐集想", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4275, + "TitleName": "雪符「ダイアモンドブリザード」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4276, + "TitleName": "尽符「ブラッディマウンテンマーダー」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4277, + "TitleName": "化鉄「置き傘特急ナイトカーニバル」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4278, + "TitleName": "恨符「丑の刻参り」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4279, + "TitleName": "創符「流刑人形」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4280, + "TitleName": "鬼神「飛翔毘沙門天」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4281, + "TitleName": "大声「チャージドヤッホー」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4282, + "TitleName": "雨符「囚われの秋雨」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4283, + "TitleName": "兎符「ベリーベリーダンゴ」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4284, + "TitleName": "飛符「フライングヘッド」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4285, + "TitleName": "響符「パワーレゾナンス」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4286, + "TitleName": "大輪「からかさ後光」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4287, + "TitleName": "妬符「グリーンアイドモンスター」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4288, + "TitleName": "疵痕「壊されたお守り」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4289, + "TitleName": "仙符「鳳凰展翅」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4290, + "TitleName": "氷符「アイシクルフォール」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4291, + "TitleName": "夜雀「真夜中のコーラスマスター」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4292, + "TitleName": "39!", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4293, + "TitleName": "このゆめはつづいてく", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4294, + "TitleName": "アイラブユウ……「♡」", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4295, + "TitleName": "君は笑っていて", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4296, + "TitleName": "磊々落々反戦国家", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4297, + "TitleName": "それは美しい", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4298, + "TitleName": "それはラッキー", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4299, + "TitleName": "Making Groovy", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4300, + "TitleName": "少年少女戦国無双", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4301, + "TitleName": "あたしの全部に\u3000その意味はあると", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4302, + "TitleName": "立ち上がろうか、ねえ?", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4303, + "TitleName": "夕焼けの赤に消えていく", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4304, + "TitleName": "また笑えますように", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4305, + "TitleName": "「ワンマンライブ大成功!」", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4306, + "TitleName": "I love 初音ミク 2018", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4307, + "TitleName": "I love \u0022ピアノ・ソナタ「月光」第三楽章\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4308, + "TitleName": "Trancemaster 月光", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4309, + "TitleName": "Tranceking 月光", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4310, + "TitleName": "Trancegod 月光", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4311, + "TitleName": "I love \u0022B.B.K.K.B.K.K. \u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4312, + "TitleName": "\u0022B.B.K.K.B.K.K.M.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4313, + "TitleName": "\u0022B.B.K.K.B.K.K.K.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4314, + "TitleName": "\u0022B.B.K.K.B.K.K.G.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4315, + "TitleName": "I love \u0022HAPPY! LUCKY! FUTURE WORLD\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4316, + "TitleName": "HAPPY LUCKY MASTER!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4317, + "TitleName": "HAPPY LUCKY KING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4318, + "TitleName": "HAPPY LUCKY GOD!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4319, + "TitleName": "I love \u0022MOVING FASTER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4320, + "TitleName": "MOVING FASTER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4321, + "TitleName": "MOVING FASTER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4322, + "TitleName": "MOVING FASTER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4323, + "TitleName": "I love \u0022人生リセットボタン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4324, + "TitleName": "人生リセットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4325, + "TitleName": "人生リセットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4326, + "TitleName": "人生リセットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4327, + "TitleName": "I love \u0022最終鬼畜妹フランドール・S\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4328, + "TitleName": "最終鬼畜先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4329, + "TitleName": "最終鬼畜女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4330, + "TitleName": "最終鬼畜妹", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4331, + "TitleName": "I love \u0022Put Your Hands Up\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4332, + "TitleName": "Hands Up Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4333, + "TitleName": "Hands Up King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4334, + "TitleName": "Hands Up God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4335, + "TitleName": "I love \u0022秘神マターラ-HYPER TECHNO MIX-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4336, + "TitleName": "秘人マターラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4337, + "TitleName": "秘王マターラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4338, + "TitleName": "秘神マターラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4339, + "TitleName": "I love \u0022夜咄ディセイブ\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4340, + "TitleName": "目を欺く先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4341, + "TitleName": "目を欺く王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4342, + "TitleName": "目を欺く神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4343, + "TitleName": "I love \u0022彗星ハネムーン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4344, + "TitleName": "彗星ハネムーンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4345, + "TitleName": "彗星ハネムーンクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4346, + "TitleName": "彗星ハネムーンゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4347, + "TitleName": "I love \u0022Finder\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4348, + "TitleName": "もう歌しか聞こえない先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4349, + "TitleName": "もう歌しか聞こえない女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4350, + "TitleName": "もう歌しか聞こえない女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4351, + "TitleName": "AUG, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4352, + "TitleName": "SEP, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4353, + "TitleName": "OCT, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4354, + "TitleName": "NOV, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4355, + "TitleName": "DEC, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4356, + "TitleName": "JAN, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4357, + "TitleName": "FEB, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4358, + "TitleName": "MAR, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4359, + "TitleName": "APR, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4360, + "TitleName": "MAY, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4361, + "TitleName": "JUN, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4362, + "TitleName": "JUL, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4363, + "TitleName": "AUG, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4364, + "TitleName": "SEP, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4365, + "TitleName": "OCT, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4366, + "TitleName": "NOV, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4367, + "TitleName": "DEC, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4368, + "TitleName": "JAN, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4369, + "TitleName": "FEB, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4370, + "TitleName": "MAR, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4371, + "TitleName": "APR, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4372, + "TitleName": "MAY, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4373, + "TitleName": "JUN, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4374, + "TitleName": "JUL, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 4375, + "TitleName": "I love \u0022夜明けまであと3秒\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4376, + "TitleName": "明星", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4377, + "TitleName": "旅立つ鳥たち", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4378, + "TitleName": "ネオンカラー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4379, + "TitleName": "I love \u0022Libera Ray\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4380, + "TitleName": "絶望リフレイン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4381, + "TitleName": "予期せぬ前兆", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4382, + "TitleName": "メランコリックジャーニー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4383, + "TitleName": "I love \u0022M.S.S.Phoenix\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4384, + "TitleName": "M.S.S.Phoenix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4385, + "TitleName": "M.S.S.Phoenix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4386, + "TitleName": "M.S.S.Phoenix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4387, + "TitleName": "I love \u0022Seyana.~何でも言うことを聞いてくれるアカネチャン~\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4388, + "TitleName": "せやな", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4389, + "TitleName": "ええんちゃう?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4390, + "TitleName": "わかる(天下無双)", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4391, + "TitleName": "I love \u0022GO BACK 2 YOUR RAVE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4392, + "TitleName": "GO BACK 2 YOUR MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4393, + "TitleName": "GO BACK 2 YOUR KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4394, + "TitleName": "GO BACK 2 YOUR GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4395, + "TitleName": "I love \u0022Desert Bread\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4396, + "TitleName": "Desert Bread Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4397, + "TitleName": "Desert Bread King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4398, + "TitleName": "Desert Bread God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4399, + "TitleName": "I love \u0022イカサマライフゲイム\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4400, + "TitleName": "イカサマライフマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4401, + "TitleName": "イカサマライフキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4402, + "TitleName": "イカサマライフゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4403, + "TitleName": "I love \u0022Cosmic Express\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4404, + "TitleName": "Cosmic Express Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4405, + "TitleName": "Cosmic Express King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4406, + "TitleName": "Cosmic Express God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4407, + "TitleName": "I love \u0022Tropics -GC edit-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4408, + "TitleName": "Tropics Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4409, + "TitleName": "Tropics King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4410, + "TitleName": "Tropics God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4411, + "TitleName": "I love \u0022Xand-Roid\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4412, + "TitleName": "Xand-Roid Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4413, + "TitleName": "Xand-Roid King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4414, + "TitleName": "Xand-Roid God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4415, + "TitleName": "I love \u0022シャルル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4416, + "TitleName": "シャルル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4417, + "TitleName": "シャルル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4418, + "TitleName": "シャルル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4419, + "TitleName": "I love \u0022SACRIFICE feat. ayame (GC REFIX)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4420, + "TitleName": "SACRIFICE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4421, + "TitleName": "SACRIFICE QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4422, + "TitleName": "SACRIFICE GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4423, + "TitleName": "I love \u0022Floor of Lava\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4424, + "TitleName": "Master of Lava", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4425, + "TitleName": "King of Lava", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4426, + "TitleName": "God of Lava", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4427, + "TitleName": "2018夏の中二病God", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4428, + "TitleName": "REZONATED", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4429, + "TitleName": "FULL MULTI-COMBO", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4430, + "TitleName": "希望を抱きしめて", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4431, + "TitleName": "永遠に廻る世界", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4432, + "TitleName": "シンクメイト", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4433, + "TitleName": "I Love シンクロニカ", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4434, + "TitleName": "Xgod", + "UnlockRequirementJp": "『Tatsh』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4435, + "TitleName": "Xking", + "UnlockRequirementJp": "『Tatsh』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4436, + "TitleName": "Xmaster", + "UnlockRequirementJp": "『Tatsh』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4437, + "TitleName": "キミズPを破りし者", + "UnlockRequirementJp": "『シンクロニカ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4438, + "TitleName": "I love \u0022バーチャルのじゃロリ狐娘Youtuberおじさんのうた\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4439, + "TitleName": "ねこみみマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4440, + "TitleName": "けもみみ王国国王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4441, + "TitleName": "バーチャルのじゃロリ狐娘Youtuberおじさん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4442, + "TitleName": "I love \u0022グリーンライツ・セレナーデ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4443, + "TitleName": "グリーンライツ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4444, + "TitleName": "グリーンライツ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4445, + "TitleName": "グリーンライツ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4446, + "TitleName": "I love \u0022ダンスロボットダンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4447, + "TitleName": "Voidoll Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4448, + "TitleName": "Voidoll King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4449, + "TitleName": "Voidoll God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4450, + "TitleName": "I love \u0022アルカリレットウセイ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4451, + "TitleName": "リリカ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4452, + "TitleName": "リリカ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4453, + "TitleName": "リリカ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4454, + "TitleName": "I love \u0022天使だと思っていたのに\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4455, + "TitleName": "13 \u002Bサーティーン\u002B Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4456, + "TitleName": "13 \u002Bサーティーン\u002B King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4457, + "TitleName": "13 \u002Bサーティーン\u002B God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4458, + "TitleName": "I love \u0022グラーヴェ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4459, + "TitleName": "グスタフ ハイドリヒ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4460, + "TitleName": "グスタフ ハイドリヒ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4461, + "TitleName": "グスタフ ハイドリヒ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4462, + "TitleName": "I love \u0022Say Around\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4463, + "TitleName": " 異次元から弾丸を飛ばす先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4464, + "TitleName": " 異次元から弾丸を飛ばす女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4465, + "TitleName": " 異次元から弾丸を飛ばす女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4466, + "TitleName": "I love \u0022Special Smile\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4467, + "TitleName": "人を狂わす程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4468, + "TitleName": "人を狂わす程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4469, + "TitleName": "人を狂わす程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4470, + "TitleName": "I love \u0022Reversal Process\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4471, + "TitleName": "口に出すと事態を逆転させる程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4472, + "TitleName": "口に出すと事態を逆転させる程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4473, + "TitleName": "口に出すと事態を逆転させる程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4474, + "TitleName": "I love \u0022EZ Mode\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4475, + "TitleName": "EZ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4476, + "TitleName": "EZ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4477, + "TitleName": "EZ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4478, + "TitleName": "I love \u0022シンデレラケージ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4479, + "TitleName": "狂気を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4480, + "TitleName": "狂気を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4481, + "TitleName": "狂気を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4482, + "TitleName": "I love \u0022UP \u0026 DOWN\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4483, + "TitleName": "UP \u0026 DOWN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4484, + "TitleName": "UP \u0026 DOWN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4485, + "TitleName": "UP \u0026 DOWN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4486, + "TitleName": "完全無欠", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4487, + "TitleName": "Legacy", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4488, + "TitleName": "嫦娥よ。見てるか!?", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4489, + "TitleName": "月の民", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4490, + "TitleName": " 地獄の女神", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4491, + "TitleName": "(無名の存在)", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4492, + "TitleName": "地獄の妖精", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4493, + "TitleName": "舌禍をもたらす女神", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4494, + "TitleName": "夢を見せる妖怪", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4495, + "TitleName": "橘色のイーグルラヴィ", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4496, + "TitleName": "浅葱色のイーグルラヴィ", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4497, + "TitleName": "月の頭脳", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4498, + "TitleName": "地上の月兎", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4499, + "TitleName": "山に住む奇跡の現人神", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4500, + "TitleName": "空飛ぶ不思議な巫女", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4501, + "TitleName": "I love \u0022BUCHiGiRE Berserker\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4502, + "TitleName": "BUCHiGiRE Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4503, + "TitleName": "BUCHiGiRE King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4504, + "TitleName": "BUCHiGiRE God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4505, + "TitleName": "I love \u0022Pegasus\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4506, + "TitleName": "Pegasus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4507, + "TitleName": "Pegasus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4508, + "TitleName": "Pegasus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4509, + "TitleName": "I love \u0022METEOR\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4510, + "TitleName": "METEOR MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4511, + "TitleName": "METEOR QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4512, + "TitleName": "METEOR GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4513, + "TitleName": "I love \u0022熟成!醸造!発酵星◎〜スペースヨーグルアース〜\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4514, + "TitleName": "ふ・な・ず・し・ますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4515, + "TitleName": "ふ・な・ず・し・くいーん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4516, + "TitleName": "ふ・な・ず・し・ごっです", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4517, + "TitleName": "I love \u0022チルドレンレコード\u0022!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4518, + "TitleName": "目に物見せる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4519, + "TitleName": "目に物見せる王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4520, + "TitleName": "目に物見せる神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4521, + "TitleName": "I love \u0022Never Stop (GC Mix)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4522, + "TitleName": "Never Stop Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4523, + "TitleName": "Never Stop King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4524, + "TitleName": "Never Stop God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4525, + "TitleName": "I love \u0022Magic Time, Future Show!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4526, + "TitleName": "Magic Time, Future Master!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4527, + "TitleName": "Magic Time, Future Queen!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4528, + "TitleName": "Magic Time, Future Goddess!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4529, + "TitleName": "I love \u0022ちがう!!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4530, + "TitleName": "ちがう!!!先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4531, + "TitleName": "ちがう!!!女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4532, + "TitleName": "ちがう!!!女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4533, + "TitleName": "I love \u0022はやくそれになりたい!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4534, + "TitleName": "あいわなびーますたー!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4535, + "TitleName": "あいわなびーくいーん!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4536, + "TitleName": "あいわなびーごっです!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4537, + "TitleName": "I love \u0022Little Higher\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4538, + "TitleName": "Little Higher Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4539, + "TitleName": "Little Higher King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4540, + "TitleName": "Little Higher God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4541, + "TitleName": "I love \u0022クレイジークレイジーダンサーズ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4542, + "TitleName": "危険すぎるマスターズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4543, + "TitleName": "危険すぎるクイーンズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4544, + "TitleName": "危険すぎるゴッデシズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4545, + "TitleName": "オンライン合同大会参加賞", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4546, + "TitleName": "GROOVE▼TRIANGLE", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4547, + "TitleName": "第五回天下一チャレンジャー", + "UnlockRequirementJp": "対象曲を1回プレイ", + "UnlockRequirementEn": "Play a set song 1 times", + "UnlockType": 12 + }, + { + "Id": 4548, + "TitleName": "第五回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第五回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEn": "第五回天下一音ゲ祭全国頂上決戦進出", + "UnlockType": 12 + }, + { + "Id": 4549, + "TitleName": "第五回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第五回天下一音ゲ祭優勝", + "UnlockRequirementEn": "第五回天下一音ゲ祭優勝", + "UnlockType": 12 + }, + { + "Id": 4550, + "TitleName": "発酵星スペースヨーグルアース", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4551, + "TitleName": "どこまでも光り輝け", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4552, + "TitleName": "どこまでも愛を飛ばして", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4553, + "TitleName": "ふ・な・ず・し", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4554, + "TitleName": "納・豆・星・団", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4555, + "TitleName": "萌やせ萌やせ", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4556, + "TitleName": "極小サイズ!", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4557, + "TitleName": "キミに届け個性的な魅力", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4558, + "TitleName": "ミクロコスモス", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4559, + "TitleName": "キミに届け謎のアツイ香り", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4560, + "TitleName": "惑星M-ISO", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4561, + "TitleName": "I love \u0022MOSAIC.WAV\u0022", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4562, + "TitleName": "I love \u0022小泉ケフィア\u0022", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4563, + "TitleName": "I love \u0022Scream Out!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4564, + "TitleName": "坤を創造する程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4565, + "TitleName": "坤を創造する程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4566, + "TitleName": "坤を創造する程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4567, + "TitleName": "I love \u0022華麗なる死闘\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4568, + "TitleName": "ロボット料理番組司会者", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4569, + "TitleName": "ロボットミュージカル俳優", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4570, + "TitleName": "地下世界のエンターテイナー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4571, + "TitleName": "I love \u0022本物のヒーローとの戦い\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4572, + "TitleName": "お寿司の匂い", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4573, + "TitleName": "ロイヤルガード隊長", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4574, + "TitleName": "ゆうしゃ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4575, + "TitleName": "I love \u0022MEGALOVANIA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4576, + "TitleName": "いたずら好きのスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4577, + "TitleName": "神出鬼没のスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4578, + "TitleName": "もっとも ラクなてき", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4579, + "TitleName": "I love \u0022甲賀忍法帖\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4580, + "TitleName": "甲賀の師匠", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4581, + "TitleName": "甲賀の首領", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4582, + "TitleName": "甲賀の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4583, + "TitleName": "I love \u0022これでホントにサヨナラ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4584, + "TitleName": "またね", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4585, + "TitleName": "バイバイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4586, + "TitleName": "それでは\u3000\nおやすみなさい…", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4587, + "TitleName": "I love \u0022悪ノ召使\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4588, + "TitleName": "悪ノ召使先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4589, + "TitleName": "悪ノ召使大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4590, + "TitleName": "悪ノ召使神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4591, + "TitleName": "I love \u0022Ignotus\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4592, + "TitleName": "Ignotus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4593, + "TitleName": "Ignotus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4594, + "TitleName": "Ignotus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4595, + "TitleName": "I love \u0022Be There\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4596, + "TitleName": "Be There Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4597, + "TitleName": "Be There King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4598, + "TitleName": "Be There God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4599, + "TitleName": "I love \u0022Modelista\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4600, + "TitleName": "Modelista Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4601, + "TitleName": "Modelista King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4602, + "TitleName": "Modelista God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4603, + "TitleName": "I love \u0022Metallic Punisher\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4604, + "TitleName": "Metallic Punisher Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4605, + "TitleName": "Metallic Punisher King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4606, + "TitleName": "Metallic Punisher God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4607, + "TitleName": "I love \u0022Singularity -Binary Enfold-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4608, + "TitleName": "Binary Enfold Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4609, + "TitleName": "Binary Enfold King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4610, + "TitleName": "Binary Enfold God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4611, + "TitleName": "ケツイが\u3000みなぎった", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4612, + "TitleName": "ダジャレ好きのスケルトン", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4613, + "TitleName": "スリル!ロマンス!バイオレンス!", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4614, + "TitleName": "ふじみ", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4615, + "TitleName": "こねこちゃん", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4616, + "TitleName": "うざいイヌ", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4617, + "TitleName": "OoooH YES・・・!", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4618, + "TitleName": "ホットドッグ屋のスケルトン", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4619, + "TitleName": "魚人の戦士", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4620, + "TitleName": "ハロー!", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4621, + "TitleName": "ロボットニュースキャスター", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4622, + "TitleName": "おはなの\u3000フラウィー", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4623, + "TitleName": "ロボットクイズ司会者", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4624, + "TitleName": "地底に落ちたニンゲン", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4625, + "TitleName": "I love \u0022UNDERTALE\u0022", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4626, + "TitleName": "I love \u0022てるみい\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4627, + "TitleName": "ちぇるみい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4628, + "TitleName": "ちぇるみい女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4629, + "TitleName": "ちぇるみい女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4630, + "TitleName": "I love \u0022STAY GOLD\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4631, + "TitleName": "STAY GOLD MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4632, + "TitleName": "STAY GOLD QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4633, + "TitleName": "STAY GOLD GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4634, + "TitleName": "I love \u0022≪AI≫リアリィ・フェアリィ≪tubers≫\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4635, + "TitleName": "リアリィ・フェアリィ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4636, + "TitleName": "リアリィ・フェアリィ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4637, + "TitleName": "リアリィ・フェアリィ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4638, + "TitleName": "I love \u0022Nyanyanyanyanyanyanya!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4639, + "TitleName": "Nyanyanyanyamaster!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4640, + "TitleName": "Nyanyanyanyaqueen!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4641, + "TitleName": "Nyanyanyanyagoddess!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4642, + "TitleName": "I love \u0022だれかの心臓になれたなら\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4643, + "TitleName": "だれかの先生になれたなら", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4644, + "TitleName": "だれかの大王になれたなら", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4645, + "TitleName": "だれかの神様になれたなら", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4646, + "TitleName": "I love \u0022ナイト・オブ・ナイツ 豚乙女ver.\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4647, + "TitleName": "時止めて闇操り光求めた先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4648, + "TitleName": "時止めて闇操り光求めた女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4649, + "TitleName": "時止めて闇操り光求めた女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4650, + "TitleName": "I love \u0022ナイト・オブ・ナイツ (feat. y t r) - TOS Remix\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4651, + "TitleName": "種も仕掛けも無い先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4652, + "TitleName": "種も仕掛けも無い王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4653, + "TitleName": "種も仕掛けも無い神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4654, + "TitleName": "I love \u0022ビートシンカー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4655, + "TitleName": "ビートシンカーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4656, + "TitleName": "ビートシンカークイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4657, + "TitleName": "ビートシンカーゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4658, + "TitleName": "I love \u0022U.A.D\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4659, + "TitleName": "U.A.D MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4660, + "TitleName": "U.A.D KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4661, + "TitleName": "U.A.D GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4662, + "TitleName": "I love \u0022Don’t Die\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4663, + "TitleName": "Don’t Die Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4664, + "TitleName": "Don’t Die King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4665, + "TitleName": "Don’t Die God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4666, + "TitleName": "I love \u0022glory day\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4667, + "TitleName": "glory day master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4668, + "TitleName": "glory day king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4669, + "TitleName": "glory day god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4670, + "TitleName": "I love \u0022OBLIVION\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4671, + "TitleName": "OBLIVION MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4672, + "TitleName": "OBLIVION KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4673, + "TitleName": "OBLIVION GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4674, + "TitleName": "I love \u0022Fermion\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4675, + "TitleName": "Fermion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4676, + "TitleName": "Fermion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4677, + "TitleName": "Fermion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4678, + "TitleName": "ARIAの精霊姉妹", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4679, + "TitleName": "世界を駆け巡る歌姫", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4680, + "TitleName": "いあおねスイッチ", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4681, + "TitleName": "ありよりのARIAer", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4682, + "TitleName": "「ちぇるみー!ちぇるみー!」", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4683, + "TitleName": "「Fly evermore」", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4684, + "TitleName": "まじゅちゅし", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4685, + "TitleName": "ARIAer", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4686, + "TitleName": "I love IA 2019", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4687, + "TitleName": "I love ONE 2019", + "UnlockRequirementJp": "『IA \u0026 ONE』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4688, + "TitleName": "ゴールド・オブ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4689, + "TitleName": "シルバー・オブ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4690, + "TitleName": "ブロンズ・オブ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4691, + "TitleName": "ナイツ・ハンパ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4692, + "TitleName": "銀符「パーフェクトメイド」 ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4693, + "TitleName": "完全で瀟洒な従者", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4694, + "TitleName": "\u003C:::::]ー\u003C:::::]ー\u003C:::::]ー\u003C:::::]ー\u003C:::::]ー", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4695, + "TitleName": "パーフェクト・トレ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4696, + "TitleName": "○○○・○○・○○○", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4697, + "TitleName": "クリア・デキ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4698, + "TitleName": "I love 十六夜咲夜", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4699, + "TitleName": "I love COOL\u0026CREATE", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4700, + "TitleName": "I love \u0022THE SEVENTH BOSS 2019\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4701, + "TitleName": "THE SEVENTH BOSS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4702, + "TitleName": "THE SEVENTH BOSS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4703, + "TitleName": "THE SEVENTH BOSS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4704, + "TitleName": "I love \u0022ライトニング・デュアルホープ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4705, + "TitleName": "ライトニング・デュアルホープ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4706, + "TitleName": "ライトニング・デュアルホープ・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4707, + "TitleName": "ライトニング・デュアルホープ・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4708, + "TitleName": "I love \u0022FAKE -PROGRESSIVE KOTA MIX-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4709, + "TitleName": "FAKE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4710, + "TitleName": "FAKE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4711, + "TitleName": "FAKE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4712, + "TitleName": "I love \u0022Got sorted view.\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4713, + "TitleName": "Groove twisted.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4714, + "TitleName": "King of groove twisted.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4715, + "TitleName": "God sorted view.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4716, + "TitleName": "I love \u0022ただ君に晴れ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4717, + "TitleName": "ただ君に晴れ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4718, + "TitleName": "ただ君に晴れ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4719, + "TitleName": "ただ君に晴れ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4720, + "TitleName": "I love \u0022ロキ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4721, + "TitleName": "ロキロキマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4722, + "TitleName": "ロキロキキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4723, + "TitleName": "ロキロキゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4724, + "TitleName": "I love \u0022幸せになれる隠しコマンドがあるらしい\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4725, + "TitleName": "→↓↑→→↓→→", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4726, + "TitleName": "回転\u3000反転\u3000一回転", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4727, + "TitleName": "疲労\u3000心労\u3000問答無用", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4728, + "TitleName": "I love \u0022チェチェ・チェック・ワンツー!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4729, + "TitleName": "チェチェ・チェック・マスター!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4730, + "TitleName": "チェチェ・チェック・クイーン!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4731, + "TitleName": "チェチェ・チェック・ゴッデス!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4732, + "TitleName": "I love \u0022Captain Murasa [Tracy vs. Astronomical Mix]\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4733, + "TitleName": "水難事故を引き起こす程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4734, + "TitleName": "水難事故を引き起こす程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4735, + "TitleName": "水難事故を引き起こす程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4736, + "TitleName": "I love \u0022悪戯センセーション\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4737, + "TitleName": "Vamp\u3000紅魔\u3000Who are you", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4738, + "TitleName": "Jump\u3000紅魔\u3000Are You Ready", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4739, + "TitleName": "はっとなってきゅっとしてドッカ-ン!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4740, + "TitleName": "I love \u0022Shiny Memory\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4741, + "TitleName": "Shiny Memory Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4742, + "TitleName": "Shiny Memory King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4743, + "TitleName": "Shiny Memory God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4744, + "TitleName": "I love \u0022Brain Power\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4745, + "TitleName": "O-oooooooooo", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4746, + "TitleName": "JO-oooooooooooo", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4747, + "TitleName": "E-eee-ee-eee", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4748, + "TitleName": "I love \u0022Lemegeton -little key of solomon-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4749, + "TitleName": "Lemegeton Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4750, + "TitleName": "Lemegeton King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4751, + "TitleName": "Lemegeton God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4752, + "TitleName": "I love \u0022マインドイブ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4753, + "TitleName": "マインドイブマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4754, + "TitleName": "マインドイブクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4755, + "TitleName": "マインドイブゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4756, + "TitleName": "I love \u0022太陽系デスコ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4757, + "TitleName": "オー・オ・オー!マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4758, + "TitleName": "オー・オ・オー!クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4759, + "TitleName": "オー・オ・オー!ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4760, + "TitleName": "I love \u0022リバースユニバース\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4761, + "TitleName": "リバースユニバースマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4762, + "TitleName": "リバースユニバースクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4763, + "TitleName": "リバースユニバースゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4764, + "TitleName": "I love \u0022エレキキュレーター\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4765, + "TitleName": "エレキキュレーターマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4766, + "TitleName": "エレキキュレータークイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4767, + "TitleName": "エレキキュレーターゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4768, + "TitleName": "I love \u0022DJノブナガのテーマ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4769, + "TitleName": "DJヒデヨシ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4770, + "TitleName": "DJイエヤス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4771, + "TitleName": "DJノブナガ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4772, + "TitleName": "RESPECT You", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4773, + "TitleName": "DJMAXグランドマスター", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4774, + "TitleName": "ヤバイ、ヤバイ", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4775, + "TitleName": "Try your ability. Do it!!", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4776, + "TitleName": "ARCADE KID", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4777, + "TitleName": "最大尊敬", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4778, + "TitleName": "超越者", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4779, + "TitleName": "無視できない実力", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4780, + "TitleName": "生涯現役", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4781, + "TitleName": "音ゲーマニア", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4782, + "TitleName": "努力家", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4783, + "TitleName": "リズムパワー集中力", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4784, + "TitleName": "いつも記憶されたい", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4785, + "TitleName": "ペコペコ", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4786, + "TitleName": "I love \u0022DJMAX RESPECT\u0022", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4787, + "TitleName": "GROOVE▼TRIANGLE 2", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4788, + "TitleName": "I love \u0022あうんどばいみー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4789, + "TitleName": "神仏を見つけ出す程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4790, + "TitleName": "神仏を見つけ出す程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4791, + "TitleName": "神仏を見つけ出す程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4792, + "TitleName": "I love \u0022Metamorphosis\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4793, + "TitleName": "あらゆるものの背中に扉を作る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4794, + "TitleName": "あらゆるものの背中に扉を作る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4795, + "TitleName": "あらゆるものの背中に扉を作る程度の秘神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4796, + "TitleName": "I love \u0022畢竟成仏\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4797, + "TitleName": "魔法地蔵の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4798, + "TitleName": "魔法地蔵の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4799, + "TitleName": "魔法地蔵の神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4800, + "TitleName": "I love \u0022紅一葉\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4801, + "TitleName": "紅一葉先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4802, + "TitleName": "紅一葉女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4803, + "TitleName": "紅一葉女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4804, + "TitleName": "I love \u0022Ray of Illuminati\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4805, + "TitleName": "Master of Illuminati", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4806, + "TitleName": "King of Illuminati", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4807, + "TitleName": "God of Illuminati", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4808, + "TitleName": "I love \u0022Nevermind\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4809, + "TitleName": "Nevermind Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4810, + "TitleName": "Nevermind King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4811, + "TitleName": "Nevermind God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4812, + "TitleName": "I love \u0022Thor\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4813, + "TitleName": "Thor Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4814, + "TitleName": "Thor King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4815, + "TitleName": "Thor God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4816, + "TitleName": "I love \u0022SON OF SUN\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4817, + "TitleName": "MASTER OF SUN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4818, + "TitleName": "KING OF SUN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4819, + "TitleName": "GOD OF SUN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4820, + "TitleName": "I love \u0022I want You\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4821, + "TitleName": "I want You Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4822, + "TitleName": "I want You King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4823, + "TitleName": "I want You God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4824, + "TitleName": "I love \u0022ハロ/ハワユ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4825, + "TitleName": "ハロ/マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4826, + "TitleName": "ハロ/クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4827, + "TitleName": "ハロ/ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4828, + "TitleName": "I love \u0022インビジブル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4829, + "TitleName": "インビジブルマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4830, + "TitleName": "インビジブルクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4831, + "TitleName": "インビジブルゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4832, + "TitleName": "I love \u0022ouroVoros\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4833, + "TitleName": "ouroVoros master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4834, + "TitleName": "ouroVoros king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4835, + "TitleName": "ouroVoros god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4836, + "TitleName": "I love \u0022Bonetrousle\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4837, + "TitleName": "自信家なスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4838, + "TitleName": "パスタを愛するスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4839, + "TitleName": "お人好しなスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4840, + "TitleName": "I love \u0022スパイダーダンス\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4841, + "TitleName": "蜘蛛の巣の匂い", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4842, + "TitleName": "スパイダースイーツ即売会店主", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4843, + "TitleName": "すべては蜘蛛のために", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4844, + "TitleName": "I love \u0022アズゴア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4845, + "TitleName": "ガーデニング好きの王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4846, + "TitleName": "地下世界の優しき王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4847, + "TitleName": "フワリン王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4848, + "TitleName": "I love \u0022最高の悪夢\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4849, + "TitleName": "きみはバカだね", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4850, + "TitleName": "弱肉強食", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4851, + "TitleName": "残酷な金色の花", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4852, + "TitleName": "「背面の暗黒猿楽」", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4853, + "TitleName": "ヴァカンスの生命", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4854, + "TitleName": "後戸の国", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4855, + "TitleName": "二童子", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4856, + "TitleName": "季節解放", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4857, + "TitleName": "究極の絶対秘神", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4858, + "TitleName": "危険すぎるバックダンサーズ", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4859, + "TitleName": "森で垂迹した魔法地蔵", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4860, + "TitleName": "神仏に心酔する守護神獣", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4861, + "TitleName": "浮世の関を超える山姥", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4862, + "TitleName": "神に近づく蝶の妖精", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4863, + "TitleName": "極寒に震える魔法使い", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4864, + "TitleName": "紅葉を散らす天狗", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4865, + "TitleName": "溶けない炎天下の氷精", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4866, + "TitleName": "春の陽に暢気な巫女", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4867, + "TitleName": "キミ、よっぽどヒマなんだね", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4868, + "TitleName": "…ダメだワン、もうネタ切れワン", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4869, + "TitleName": "懐かしのバタースコッチパイ", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4870, + "TitleName": "蜘蛛の女王", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4871, + "TitleName": "ニャハハハ!", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4872, + "TitleName": "さくじょ\u3000されました。", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4873, + "TitleName": "大学資金", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4874, + "TitleName": "ボクのせかい", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4875, + "TitleName": "HP(ヒットプードル)", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4876, + "TitleName": "おちゃでも いかがかな?", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4877, + "TitleName": "メランコリックなゴースト", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4878, + "TitleName": "冷やかし厳禁", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4879, + "TitleName": "ホィ!", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4880, + "TitleName": "パズル大好きスケルトン", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4881, + "TitleName": "I love \u0022While Shining\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4882, + "TitleName": "While Shining...Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4883, + "TitleName": "While Shining...King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4884, + "TitleName": "While Shining...God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4885, + "TitleName": "天の海が繋ぐ東照の朋", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4886, + "TitleName": "I love \u0022弾・幕・決・壊\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4887, + "TitleName": "境界を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4888, + "TitleName": "境界を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4889, + "TitleName": "境界を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4890, + "TitleName": "I love \u0022Journey\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4891, + "TitleName": "Journey Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4892, + "TitleName": "Journey King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4893, + "TitleName": "Journey God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4894, + "TitleName": "I love \u0022Song for Sprites\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4895, + "TitleName": "Song for Sprites Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4896, + "TitleName": "Song for Sprites King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4897, + "TitleName": "Song for Sprites God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4898, + "TitleName": "I love \u0022Apocalypse\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4899, + "TitleName": "Apocalypse Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4900, + "TitleName": "Apocalypse King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4901, + "TitleName": "Apocalypse God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4902, + "TitleName": "I love \u0022Hayabusa\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 4903, + "TitleName": "Hayabusa Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4904, + "TitleName": "Hayabusa King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 4905, + "TitleName": "Hayabusa God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 4906, + "TitleName": "I love \u002210pt8ion\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4907, + "TitleName": "10pt8ion master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4908, + "TitleName": "10pt8ion king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4909, + "TitleName": "10pt8ion god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4910, + "TitleName": "I love \u0022Got OVA store.\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4911, + "TitleName": "Groove toast.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4912, + "TitleName": "King of groove toast.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4913, + "TitleName": "God OVA store.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4914, + "TitleName": "I love \u0022Got temporary haven?\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4915, + "TitleName": "Groove anthem party? ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4916, + "TitleName": "King of groove anthem party? ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4917, + "TitleName": "God temporary haven?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4918, + "TitleName": "I love \u0022劇場版\u3000怪談「カーナビ」\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4919, + "TitleName": "劇場版\u3000怪談「カーナビ」先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4920, + "TitleName": "劇場版\u3000怪談「カーナビ」大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4921, + "TitleName": "劇場版\u3000怪談「カーナビ」神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4922, + "TitleName": "Everything Get Groove", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4923, + "TitleName": "グルーヴに熟練したもの", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4924, + "TitleName": "拍節という概念からの解放", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4925, + "TitleName": "希望と絶望のフレーズ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4926, + "TitleName": "グルーヴ将軍", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4927, + "TitleName": "アナグラム体質", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4928, + "TitleName": "E.G.G.の正体を知る者", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4929, + "TitleName": "天空と地獄を行き来するフレーズ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4930, + "TitleName": "グルーヴの新たな境地", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4931, + "TitleName": "グルーヴ信仰", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4932, + "TitleName": "ゆく河の流れは絶えずして、しかも、もとの水にあらず。", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4933, + "TitleName": "グルーヴの流れ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4934, + "TitleName": "ねじれたグルーヴ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4935, + "TitleName": "都会と喧騒", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4936, + "TitleName": "グルーヴに乾杯", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4937, + "TitleName": "鉄板のグルーヴ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4938, + "TitleName": "I love \u0022E.G.G.\u0022", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4939, + "TitleName": "グルーヴバタフライ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4940, + "TitleName": "音の海を揺蕩う蝶", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4941, + "TitleName": "音の海を舞う蝶", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4942, + "TitleName": "I love \u0022ドラマツルギー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4943, + "TitleName": "その目に映るマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4944, + "TitleName": "その目に映るキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4945, + "TitleName": "その目に映るゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4946, + "TitleName": "I love \u0022ヒトガタ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 4947, + "TitleName": "ココロを叫べ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4948, + "TitleName": "ココロを叫べ クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 4949, + "TitleName": "ココロを叫べ ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 4950, + "TitleName": "I love \u0022Re:End of a Dream\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4951, + "TitleName": "Re:End of Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4952, + "TitleName": "Re:End of King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4953, + "TitleName": "Re:End of God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4954, + "TitleName": "I love \u0022VALEDICT\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 4955, + "TitleName": "VALEDICT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4956, + "TitleName": "VALEDICT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 4957, + "TitleName": "VALEDICT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 4958, + "TitleName": "I love \u0022バブルの呪文はシュー!ポッ!プッシュ!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4959, + "TitleName": "シュー!ポッ!プッシュ!マスター!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4960, + "TitleName": "シュー!ポッ!プッシュ!キング!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4961, + "TitleName": "シュー!ポッ!プッシュ!ゴッド!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4962, + "TitleName": "I love \u0022君色Petal\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4963, + "TitleName": "Bloom! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4964, + "TitleName": "Bloom! Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4965, + "TitleName": "Bloom! Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4966, + "TitleName": "I love \u0022正義の槍\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4967, + "TitleName": "ええい めんどくさいっ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4968, + "TitleName": "じかんの ムダだッ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4969, + "TitleName": "ズッとも", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4970, + "TitleName": "I love \u0022THE WORLD REVOLVING\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 4971, + "TitleName": "カオスのニオイがする。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4972, + "TitleName": "カオスだヨ?\u3000カオスだネ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 4973, + "TitleName": "世界が回る\u3000回るよ世界。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 4974, + "TitleName": "I love \u0022脳漿炸裂ガール\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4975, + "TitleName": "脳漿炸裂マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4976, + "TitleName": "脳漿炸裂クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4977, + "TitleName": "脳漿炸裂ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4978, + "TitleName": "I love \u0022Cosmic Ray\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 4979, + "TitleName": "COSYS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4980, + "TitleName": "COSYS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 4981, + "TitleName": "COSYS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 4982, + "TitleName": "アカリがやってきたぞっ", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4983, + "TitleName": "ドゥンぱーぱーぱーぱー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4984, + "TitleName": "ガタンゴトン ガタンゴトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4985, + "TitleName": "シャキーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4986, + "TitleName": "ぐる☆ネーション", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 4987, + "TitleName": "Shooting☆みるきーうぇい", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4988, + "TitleName": "Shooting☆めておしゃわー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 4989, + "TitleName": "ぐるる、ぐるる、イマジネーション☆", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 4990, + "TitleName": "GROOVE▼TRIANGLE 3", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 4991, + "TitleName": "闘神祭2020チャレンジャー", + "UnlockRequirementJp": "闘神祭2020予選参加", + "UnlockRequirementEn": "闘神祭2020予選参加", + "UnlockType": 12 + }, + { + "Id": 4992, + "TitleName": "闘神祭2020ファイナリスト", + "UnlockRequirementJp": "闘神祭2020決勝進出", + "UnlockRequirementEn": "闘神祭2020決勝進出", + "UnlockType": 12 + }, + { + "Id": 4993, + "TitleName": "闘神祭2020チャンピオン", + "UnlockRequirementJp": "闘神祭2020優勝", + "UnlockRequirementEn": "闘神祭2020優勝", + "UnlockType": 12 + }, + { + "Id": 4994, + "TitleName": "I love \u0022フィクサー\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4995, + "TitleName": "沈め 沈め", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4996, + "TitleName": "落とせ 落とせ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 4997, + "TitleName": "奪え 奪え", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 4998, + "TitleName": "I love \u0022テオ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 4999, + "TitleName": "クラクラクラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5000, + "TitleName": "ユラユラユラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5001, + "TitleName": "キラキラキラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5002, + "TitleName": "I love \u0022ベノム\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5003, + "TitleName": "叫ベベベノム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5004, + "TitleName": "叫ベベベノム 叫ベベベノム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5005, + "TitleName": "めっ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5006, + "TitleName": "I love \u0022DOWN DOWN DOLL\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5007, + "TitleName": "Spell to corse!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5008, + "TitleName": "Curse My Heart!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5009, + "TitleName": "Hey!Down Down Doll!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5010, + "TitleName": "I love \u0022ミライトミライ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5011, + "TitleName": "いっせーの、はい!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5012, + "TitleName": "OH YEAH!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5013, + "TitleName": "ハロー\u3000ハロー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5014, + "TitleName": "I love \u0022Let you DIVE!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5015, + "TitleName": "光と音の輪で遊んで", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5016, + "TitleName": "君の心の中 全てWACCA", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5017, + "TitleName": "君も共に行こう Let you DIVE!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5018, + "TitleName": "I love \u0022Poseidon\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5019, + "TitleName": "Poseidon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5020, + "TitleName": "Poseidon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5021, + "TitleName": "Poseidon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5022, + "TitleName": "I love \u0022ヒバリ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5023, + "TitleName": "日晴", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5024, + "TitleName": "ヒバリの天", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5025, + "TitleName": "姫雛鳥の天", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5026, + "TitleName": "I love \u0022Gate One\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5027, + "TitleName": "Gate One Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5028, + "TitleName": "Gate One King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5029, + "TitleName": "Gate One God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5030, + "TitleName": "I love \u0022Exitium\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5031, + "TitleName": "Exitium Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5032, + "TitleName": "Exitium King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5033, + "TitleName": "Exitium God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5034, + "TitleName": "AUG, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5035, + "TitleName": "SEP, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5036, + "TitleName": "OCT, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5037, + "TitleName": "NOV, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5038, + "TitleName": "DEC, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5039, + "TitleName": "JAN, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5040, + "TitleName": "FEB, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5041, + "TitleName": "MAR, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5042, + "TitleName": "APR, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5043, + "TitleName": "MAY, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5044, + "TitleName": "JUN, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5045, + "TitleName": "JUL, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5046, + "TitleName": "AUG, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5047, + "TitleName": "SEP, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5048, + "TitleName": "OCT, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5049, + "TitleName": "NOV, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5050, + "TitleName": "DEC, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5051, + "TitleName": "JAN, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5052, + "TitleName": "FEB, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5053, + "TitleName": "MAR, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5054, + "TitleName": "APR, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5055, + "TitleName": "MAY, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5056, + "TitleName": "JUN, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5057, + "TitleName": "JUL, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEn": "Get via a campaign", + "UnlockType": 12 + }, + { + "Id": 5058, + "TitleName": "WACCA MASTER", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5059, + "TitleName": "十分に強い", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5060, + "TitleName": "永久機関", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5061, + "TitleName": "素人は黙っとれ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5062, + "TitleName": "君グルコスうまいねぇ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5063, + "TitleName": "Laur信者", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5064, + "TitleName": "くぅ~疲れましたw", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5065, + "TitleName": "MNKメンバー", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5066, + "TitleName": "俺たちの戦いは始まったばかりだ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5067, + "TitleName": "aranはダチ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5068, + "TitleName": "t\u002Bpazoliteファミリー", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5069, + "TitleName": "REDALiCEファン", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5070, + "TitleName": "Kobaryo推し", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5071, + "TitleName": "ウェルカムトゥワッカ!", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5072, + "TitleName": "WACCAはじめました", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5073, + "TitleName": "I love \u0022An indignant world\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5074, + "TitleName": "An indignant master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5075, + "TitleName": "An indignant king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5076, + "TitleName": "An indignant god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5077, + "TitleName": "I love \u0022アンドロメダアンドロメダ -Invade MIX-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5078, + "TitleName": "ワレワレは宇宙人ダ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5079, + "TitleName": "届ける思いは超電波", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5080, + "TitleName": "パルラパルラパルラッタッタラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5081, + "TitleName": "I love \u0022バレリーコ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5082, + "TitleName": "ディン・ディン・ダン♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5083, + "TitleName": "アン・ドゥ・トロワ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5084, + "TitleName": "シャル・ウィ・ダンス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5085, + "TitleName": "I love \u0022MariannE (Lanota Edit)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5086, + "TitleName": "MariannE Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5087, + "TitleName": "MariannE Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5088, + "TitleName": "MariannE Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5089, + "TitleName": "I love \u0022-A.I.D-\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5090, + "TitleName": "A.I.D Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5091, + "TitleName": "A.I.D King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5092, + "TitleName": "A.I.D God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5093, + "TitleName": "I love \u0022改革のバラッド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5094, + "TitleName": "改革のバラッド Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5095, + "TitleName": "改革のバラッド King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5096, + "TitleName": "改革のバラッド God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5097, + "TitleName": "I love \u0022uranus\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5098, + "TitleName": "uranus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5099, + "TitleName": "uranus Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5100, + "TitleName": "uranus Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5101, + "TitleName": "I love \u0022ヒトリシズカ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5102, + "TitleName": "闇を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5103, + "TitleName": "闇を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5104, + "TitleName": "闇を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5105, + "TitleName": "I love \u0022エピクロスの虹はもう見えない\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5106, + "TitleName": "色鮮やかに虹色な先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5107, + "TitleName": "色鮮やかに虹色な女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5108, + "TitleName": "色鮮やかに虹色な女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5109, + "TitleName": "I love \u0022taboo tears you up 2017\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5110, + "TitleName": "ありとあらゆるものを破壊する程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5111, + "TitleName": "ありとあらゆるものを破壊する程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5112, + "TitleName": "ありとあらゆるものを破壊する程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5113, + "TitleName": "I love \u0022Omega Ax\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5114, + "TitleName": "Omega Ax Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5115, + "TitleName": "Omega Ax King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5116, + "TitleName": "Omega Ax God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5117, + "TitleName": "I love \u0022Corruption\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5118, + "TitleName": "Corruption Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5119, + "TitleName": "Corruption King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5120, + "TitleName": "Corruption God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5121, + "TitleName": "I love \u0022Grievous Lady\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5122, + "TitleName": "Grievous Lady Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5123, + "TitleName": "Grievous Lady King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5124, + "TitleName": "Grievous Lady God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5125, + "TitleName": "東方紅魔狂", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5126, + "TitleName": "恐ろしい波動", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5127, + "TitleName": "紅色の世界", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5128, + "TitleName": "知識と日陰の少女", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5129, + "TitleName": "エリュシオンに血の雨", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5130, + "TitleName": "危険な手品師", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5131, + "TitleName": "色鮮やかに虹色な門番", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5132, + "TitleName": "氷の妖怪", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5133, + "TitleName": "宵闇の妖怪", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5134, + "TitleName": "弾幕ごっこ", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5135, + "TitleName": "I love \u0022絶対にチョコミントを食べるアオイチャン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5136, + "TitleName": "Chocomint Ice", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5137, + "TitleName": "Chocomint Cake", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5138, + "TitleName": "Chocolate Ice", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5139, + "TitleName": "I love \u0022スーサイドパレヱド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5140, + "TitleName": "スーサイドパレヱド・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5141, + "TitleName": "スーサイドパレヱド・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5142, + "TitleName": "スーサイドパレヱド・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5143, + "TitleName": "I love \u0022HANIPAGANDA\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5144, + "TitleName": "弓兵埴輪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5145, + "TitleName": "剣士埴輪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5146, + "TitleName": "騎馬兵埴輪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5147, + "TitleName": "I love \u0022穢れなきユーフォリア\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5148, + "TitleName": "造形先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5149, + "TitleName": "造形王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5150, + "TitleName": "造形神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5151, + "TitleName": "I love \u0022夢色プレリュード\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5152, + "TitleName": "ニワタリ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5153, + "TitleName": "ニワタリ王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5154, + "TitleName": "ニワタリ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5155, + "TitleName": "I love \u0022Vanity on the future\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5156, + "TitleName": "黒駒", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5157, + "TitleName": "漆黒の天馬", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5158, + "TitleName": "聖徳太子のペガサス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5159, + "TitleName": "イドラデウス", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5160, + "TitleName": "鬼畜生の所業", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5161, + "TitleName": "勁牙組\u3000組長", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5162, + "TitleName": "孤立無援が誂えた造形神", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5163, + "TitleName": "埴輪兵長", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5164, + "TitleName": "鬼傑組\u3000組長", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5165, + "TitleName": "地獄関所の番頭神", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5166, + "TitleName": "古代魚の子連れ番人", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5167, + "TitleName": "半人半霊の二刀剣士 魂魄妖夢", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5168, + "TitleName": "オオワシ霊", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5169, + "TitleName": "河原のアイドル水子", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5170, + "TitleName": "カワウソ霊", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5171, + "TitleName": "至極普通の魔法使い", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5172, + "TitleName": "オオカミ霊", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5173, + "TitleName": "楽園の素敵な巫女", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5174, + "TitleName": "トーナメント オブ ザ マスターズ チャンピオン", + "UnlockRequirementJp": "トーナメント オブ ザ マスターズ優勝", + "UnlockRequirementEn": "Tournament of the Masters\nWinner", + "UnlockType": 12 + }, + { + "Id": 5175, + "TitleName": "I love \u0022Light of Muse\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5176, + "TitleName": "Light of Muse Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5177, + "TitleName": "Light of Muse King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5178, + "TitleName": "Light of Muse God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5179, + "TitleName": "I love \u0022Stargazer\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5180, + "TitleName": "Stargazer Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5181, + "TitleName": "Stargazer King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5182, + "TitleName": "Stargazer God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5183, + "TitleName": "I love \u0022XING\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5184, + "TitleName": "XING Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5185, + "TitleName": "XING King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5186, + "TitleName": "XING God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5187, + "TitleName": "I love \u0022粉骨砕身カジノゥ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5188, + "TitleName": "粉骨砕身カジノゥ マスタァ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5189, + "TitleName": "粉骨砕身カジノゥ キングゥ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5190, + "TitleName": "粉骨砕身カジノゥ ゴッドゥ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5191, + "TitleName": "I love \u0022GROOVE LOOP\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5192, + "TitleName": "GROOVE LOOP MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5193, + "TitleName": "GROOVE LOOP KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5194, + "TitleName": "GROOVE LOOP GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5195, + "TitleName": "I love \u0022Aurgelmir\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5196, + "TitleName": "Aurgelmir Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5197, + "TitleName": "Aurgelmir King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5198, + "TitleName": "Aurgelmir God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5199, + "TitleName": "I love \u0022ヴィラン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5200, + "TitleName": "ヴィラン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5201, + "TitleName": "ヴィラン キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5202, + "TitleName": "ヴィラン ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5203, + "TitleName": "DIAMOND GALAXY", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5204, + "TitleName": "君も僕もGROOVEしちゃおう", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5205, + "TitleName": "削除", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5206, + "TitleName": "ラッキー7", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5207, + "TitleName": "I love VTuber", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5208, + "TitleName": "ときめきこそ正義なのだ", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5209, + "TitleName": "ミライ部", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5210, + "TitleName": "シロ組", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5211, + "TitleName": "クラスメイト", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5212, + "TitleName": "削除", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5213, + "TitleName": "I love ミライアカリ", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5214, + "TitleName": "I love 電脳少女シロ", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5215, + "TitleName": "I love 月ノ美兎", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5216, + "TitleName": "削除", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5217, + "TitleName": "祝7周年!", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5218, + "TitleName": "I love \u0022QiXiN MAdN3ss 2153\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5219, + "TitleName": "QiXiN MAdN3ss 2153 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5220, + "TitleName": "QiXiN MAdN3ss 2153 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5221, + "TitleName": "QiXiN MAdN3ss 2153 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5222, + "TitleName": "I love \u0022with U\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5223, + "TitleName": "with U Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5224, + "TitleName": "with U King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5225, + "TitleName": "with U God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5226, + "TitleName": "I love \u0022Invisible Frenzy\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5227, + "TitleName": "Invisible Frenzy Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5228, + "TitleName": "Invisible Frenzy King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5229, + "TitleName": "Invisible Frenzy God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5230, + "TitleName": "I love \u0022Knight Rider\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5231, + "TitleName": "Knight Rider Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5232, + "TitleName": "Knight Rider King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5233, + "TitleName": "Knight Rider God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5234, + "TitleName": "I love \u0022乙女解剖\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5235, + "TitleName": "乙女解剖 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5236, + "TitleName": "乙女解剖 Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5237, + "TitleName": "乙女解剖 Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5238, + "TitleName": "I love \u0022ロストワードクロニカル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5239, + "TitleName": "ロストワードクロニカル Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5240, + "TitleName": "ロストワードクロニカル King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5241, + "TitleName": "ロストワードクロニカル God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5242, + "TitleName": "I love \u0022プナイプナイたいそう\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5243, + "TitleName": "プナイプナイたいそうマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5244, + "TitleName": "プナイプナイたいそうキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5245, + "TitleName": "プナイプナイたいそうゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5246, + "TitleName": "I love \u0022GOODBOUNCE\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5247, + "TitleName": "GOODBOUNCE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5248, + "TitleName": "GOODBOUNCE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5249, + "TitleName": "GOODBOUNCE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5250, + "TitleName": "I love \u0022Altale\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5251, + "TitleName": "Altale Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5252, + "TitleName": "Altale King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5253, + "TitleName": "Altale God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5254, + "TitleName": "I love \u0022MilK\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5255, + "TitleName": "MilK Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5256, + "TitleName": "MilK King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5257, + "TitleName": "MilK God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5258, + "TitleName": "神の光", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5259, + "TitleName": "うーっ!プナイプナ~イっ!", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5260, + "TitleName": "本日休講", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5261, + "TitleName": "星と月の鍵", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5262, + "TitleName": "(><)", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5263, + "TitleName": "世界の目覚め", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5264, + "TitleName": "STOMP YOUR FEET", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5265, + "TitleName": "メリーゴーランドまわれーっ!", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5266, + "TitleName": "懸垂式汽車", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5267, + "TitleName": "4000", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5268, + "TitleName": "星空の釣り人", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5269, + "TitleName": "I love 飛騨 跳", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5270, + "TitleName": "XO", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5271, + "TitleName": "I love ユミル", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5272, + "TitleName": "I love てるやま", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5273, + "TitleName": "I love \u0022Gimme吟味virtuaる最高star!!!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5274, + "TitleName": "Groovin Groovin Party!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5275, + "TitleName": "もっと”グルーヴ”したくないですか?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5276, + "TitleName": "最強 Virtual Beats!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5277, + "TitleName": "I love \u0022Shiny Smily Story\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5278, + "TitleName": "走れGO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5279, + "TitleName": "とまらないホロライブ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5280, + "TitleName": "こえていくホロライブ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5281, + "TitleName": "I love \u0022サトリアイ(feat. ytr)\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5282, + "TitleName": "独りきりで屋敷の中", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5283, + "TitleName": "サトリサトラレ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5284, + "TitleName": "逃れられないEyes", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5285, + "TitleName": "I love \u0022お空のニュークリアフュージョン道場\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5286, + "TitleName": "制御棒をぶちかませ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5287, + "TitleName": "最強装備だ\u3000核融合!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5288, + "TitleName": "それでもゆっくりしたいですか?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5289, + "TitleName": "I love \u0022眠れぬ夜君を想フ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5290, + "TitleName": "眠れぬ夜君を想フ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5291, + "TitleName": "眠れぬ夜君を想フ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5292, + "TitleName": "眠れぬ夜君を想フ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5293, + "TitleName": "I love \u0022World Vanquisher\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5294, + "TitleName": "World Vanquisher Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5295, + "TitleName": "World Vanquisher King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5296, + "TitleName": "World Vanquisher God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5297, + "TitleName": "I love \u0022光線チューニング\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5298, + "TitleName": "光線チューニング Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5299, + "TitleName": "光線チューニング King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5300, + "TitleName": "光線チューニング God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5301, + "TitleName": "I love \u0022Paqqin\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5302, + "TitleName": "Paqqin Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5303, + "TitleName": "Paqqin King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5304, + "TitleName": "Paqqin God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5305, + "TitleName": "I love \u0022Trrricksters!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5306, + "TitleName": "Trrricksters!! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5307, + "TitleName": "Trrricksters!! King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5308, + "TitleName": "Trrricksters!! God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5309, + "TitleName": "I love \u0022大江山ジャイアントスイング\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5310, + "TitleName": "おえおぅぃぇ\u3000おえおぅぃぇ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5311, + "TitleName": "ぼんばぃぇぁ\u3000ぼんばぃぇぁ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5312, + "TitleName": "「えびばりげっだんなう!」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5313, + "TitleName": "I love \u0022無間嫉妬劇場『666』\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5314, + "TitleName": "\n第一幕『閑静な日常』", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5315, + "TitleName": "第二幕『覚醒』", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5316, + "TitleName": "空虚な 無間嫉妬", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5317, + "TitleName": "I love \u0022Dreamin\u0027 Attraction!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5318, + "TitleName": "Dreamin\u0027 Attraction!! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5319, + "TitleName": "Dreamin\u0027 Attraction!! King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5320, + "TitleName": "Dreamin\u0027 Attraction!! God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5321, + "TitleName": "I love \u0022Black Lotus\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5322, + "TitleName": "Black Lotus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5323, + "TitleName": "Black Lotus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5324, + "TitleName": "Black Lotus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5325, + "TitleName": "CHUNITHM\u3000PARADISE", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5326, + "TitleName": "CHUNITHM\u3000CRYSTAL", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5327, + "TitleName": "CHUNITHM\u3000AMAZON", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5328, + "TitleName": "CHUNITHM\u3000STAR", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5329, + "TitleName": "CHUNITHM\u3000AIR", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5330, + "TitleName": "虹レ", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5331, + "TitleName": "断罪せし御使い", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5332, + "TitleName": "恋のキューピット", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5333, + "TitleName": "ALL JUSTICE", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5334, + "TitleName": "ラブリーハンター", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5335, + "TitleName": "ね、かんたんでしょ?", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5336, + "TitleName": "WORLD\u0027S END", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5337, + "TitleName": "サウンドパレード!!", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5338, + "TitleName": "チュウニズム勢", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5339, + "TitleName": "I love CHUNITHM", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5340, + "TitleName": "I love \u0022Apocalypse Lotus\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5341, + "TitleName": "Apocalypse Lotus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5342, + "TitleName": "Apocalypse Lotus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5343, + "TitleName": "Apocalypse Lotus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5344, + "TitleName": "I love \u0022Third Time UNLucky\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5345, + "TitleName": "UNLucky Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5346, + "TitleName": "UNLucky King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5347, + "TitleName": "UNLucky God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5348, + "TitleName": "I love \u0022セイレーンの邀撃\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5349, + "TitleName": "Master of SIREN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5350, + "TitleName": "King of SIREN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5351, + "TitleName": "God of SIREN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5352, + "TitleName": "I love \u0022KING\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5353, + "TitleName": "You are master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5354, + "TitleName": "You are king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5355, + "TitleName": "You are god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5356, + "TitleName": "I love \u0022ジャンキーナイトタウンオーケストラ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 21 + }, + { + "Id": 5357, + "TitleName": "ジャンキーナイトタウンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5358, + "TitleName": "ジャンキーナイトタウンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 21 + }, + { + "Id": 5359, + "TitleName": "ジャンキーナイトタウンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 21 + }, + { + "Id": 5360, + "TitleName": "I love \u00221llusion 0f the FAIRYtALE hARMONY\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5361, + "TitleName": "1llusion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5362, + "TitleName": "1llusion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5363, + "TitleName": "1llusion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5364, + "TitleName": "I love \u0022Happy 10th anniversary\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5365, + "TitleName": "10th anniversary Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5366, + "TitleName": "10th anniversary King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5367, + "TitleName": "10th anniversary God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5368, + "TitleName": "I love \u0022聖者の祈願\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5369, + "TitleName": "祈願先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5370, + "TitleName": "祈願大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5371, + "TitleName": "祈願神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5372, + "TitleName": "I love \u0022Invader OnDo\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5373, + "TitleName": "OnDo Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5374, + "TitleName": "OnDo King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5375, + "TitleName": "OnDo God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5376, + "TitleName": "I love \u0022幻想に咲いた花\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5377, + "TitleName": "幻想に咲いた花Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5378, + "TitleName": "幻想に咲いた花Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5379, + "TitleName": "幻想に咲いた花Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5380, + "TitleName": "I love \u0022マツヨイナイトバグ\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 22 + }, + { + "Id": 5381, + "TitleName": "マツヨイナイトバグMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5382, + "TitleName": "マツヨイナイトバグQueen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 22 + }, + { + "Id": 5383, + "TitleName": "マツヨイナイトバグGoddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 22 + }, + { + "Id": 5384, + "TitleName": "I love \u0022Mr.VIRTUALIZER\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5385, + "TitleName": "タラッタッタタッツタッター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5386, + "TitleName": "Right away, Right away", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5387, + "TitleName": "「お願いMr.」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5388, + "TitleName": "I love \u0022だから僕は音楽を辞めた\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5389, + "TitleName": "考えたってわからないし", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5390, + "TitleName": "間違ってるんだよ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5391, + "TitleName": "だから僕は音楽を辞めた", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5392, + "TitleName": "ToM 2021SUMMER チャンピオン", + "UnlockRequirementJp": "トーナメント オブ ザ マスターズ\n2021 SUMMER優勝", + "UnlockRequirementEn": "Tournament of the Masters\n2021 SUMMER Winner", + "UnlockType": 12 + }, + { + "Id": 5393, + "TitleName": "テンションあげてFever", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5394, + "TitleName": "リズムのレール", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5395, + "TitleName": "夢は無限に広がる", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5396, + "TitleName": "ビートの宇宙", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5397, + "TitleName": "もう一回転!", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5398, + "TitleName": "一緒に歌いたい", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5399, + "TitleName": "クレープ食べながら", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5400, + "TitleName": "みとれたらがぶっとするぜ", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5401, + "TitleName": "HARMONY奏でよう", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5402, + "TitleName": "CHAIN CHAIN CHAIN FEVER!!!", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5403, + "TitleName": "1llusion", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5404, + "TitleName": "Come 0n! Groove Coaster", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5405, + "TitleName": "Monday Sunday 一週間", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5406, + "TitleName": "10年目の記念日", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5407, + "TitleName": "Let\u0027s Groove!", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5408, + "TitleName": "I love \u0022LOVE!HUG!GROOVY!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5409, + "TitleName": "SHAKING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5410, + "TitleName": "BEATING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5411, + "TitleName": "BIGBANG!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5412, + "TitleName": "I love \u0022CAPTAIN NEO~BOSS SCENE1\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 5413, + "TitleName": "ZONE A MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 5414, + "TitleName": "ZONE A KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 5415, + "TitleName": "ZONE A GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 5416, + "TitleName": "I love \u0022ぐるぐるDJ TURN!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5417, + "TitleName": "Let\u0027s Dance with D4DJ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5418, + "TitleName": "ココで踊らにゃSong!Song!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5419, + "TitleName": "届け DJ4U", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5420, + "TitleName": "I love \u0022CHAOS~BOSS SCENE7\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 24 + }, + { + "Id": 5421, + "TitleName": "ZONE Z MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 5422, + "TitleName": "ZONE Z KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 24 + }, + { + "Id": 5423, + "TitleName": "ZONE Z GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 24 + }, + { + "Id": 5424, + "TitleName": "I love \u0022電乱★カウントダウン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5425, + "TitleName": "Super beat", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5426, + "TitleName": "電乱無双", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5427, + "TitleName": "Peaky P-key", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5428, + "TitleName": "I love \u0022Photon Melodies\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5429, + "TitleName": "いまだ誰も望み得ぬ未踏", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5430, + "TitleName": "Fill the earth with melodies", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5431, + "TitleName": "Photon Maiden", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5432, + "TitleName": "I love \u0022Per Aspera Ad Astra\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5433, + "TitleName": "Aspera", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5434, + "TitleName": "Astra", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5435, + "TitleName": "困難を通じて天へ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5436, + "TitleName": "闘神祭2021チャレンジャー", + "UnlockRequirementJp": "闘神祭2021 REVENGE予選参加", + "UnlockRequirementEn": "闘神祭2021 REVENGE予選参加", + "UnlockType": 12 + }, + { + "Id": 5437, + "TitleName": "闘神祭2021ファイナリスト", + "UnlockRequirementJp": "闘神祭2021 REVENGE決勝進出", + "UnlockRequirementEn": "闘神祭2021 REVENGE決勝進出", + "UnlockType": 12 + }, + { + "Id": 5438, + "TitleName": "闘神祭2021チャンピオン", + "UnlockRequirementJp": "闘神祭2021 REVENGE優勝", + "UnlockRequirementEn": "闘神祭2021 REVENGE優勝", + "UnlockType": 12 + }, + { + "Id": 5439, + "TitleName": "I love \u00228-EM\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5440, + "TitleName": "ATM Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5441, + "TitleName": "ATM King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5442, + "TitleName": "ATM God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5443, + "TitleName": "I love \u0022Oshama Scramble!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5444, + "TitleName": "牛乳 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5445, + "TitleName": "牛乳 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5446, + "TitleName": "牛乳 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5447, + "TitleName": "I love \u0022RDY\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5448, + "TitleName": "孤独な夜を超えて", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5449, + "TitleName": "鋭いその眼差しで", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5450, + "TitleName": "Go fight!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5451, + "TitleName": "I love \u0022アゲナゲン\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5452, + "TitleName": "What! again\u0026again", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5453, + "TitleName": "Ha! カマセ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5454, + "TitleName": "俺らNO.1プレイヤー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5455, + "TitleName": "I love \u0022DX超野生!サバイバルずんど子ちゃん\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5456, + "TitleName": "ちゃかぽこ\u3000ちゃかぽこ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5457, + "TitleName": "ちゃかちゃ ちゃかちゃ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5458, + "TitleName": "ズンドコ\u3000ちゃかぽこ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5459, + "TitleName": "I love \u0022希\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5460, + "TitleName": "馳せる想い君へ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5461, + "TitleName": "叶わぬ恋心", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5462, + "TitleName": "散りゆく桜のよう", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5463, + "TitleName": "I love \u0022Valkyrja Requiem\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5464, + "TitleName": "Valkyrja Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5465, + "TitleName": "Valkyrja Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5466, + "TitleName": "Valkyrja Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5467, + "TitleName": "I love \u0022コスモスタート\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 26 + }, + { + "Id": 5468, + "TitleName": "コスモスタートマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5469, + "TitleName": "コスモスタートキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 26 + }, + { + "Id": 5470, + "TitleName": "コスモスタートゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 26 + }, + { + "Id": 5471, + "TitleName": "I love \u0022GOODTEK\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5472, + "TitleName": "TURN THE BASS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5473, + "TitleName": "PUMP THAT BASS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5474, + "TitleName": "Y\u0022Y\u0022Y\u0022Y\u0022Y\u0022Y\u0022Y\u0022Y", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5475, + "TitleName": "I love \u0022RAV#GIRL\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 25 + }, + { + "Id": 5476, + "TitleName": "RAV# MAST3R", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5477, + "TitleName": "RAV# QU33N", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 25 + }, + { + "Id": 5478, + "TitleName": "RAV# GODD3SS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 25 + }, + { + "Id": 5479, + "TitleName": "I love \u0022オペレーション・ネバーランド\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5480, + "TitleName": "究極の安全地帯", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5481, + "TitleName": "6畳一間の約束の地", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5482, + "TitleName": "GG~~!!!!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5483, + "TitleName": "I love \u0022We are VOX MONSTERS\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5484, + "TitleName": "時には半狂乱でオーバーラン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5485, + "TitleName": "魅せつけるぜウィニングラン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5486, + "TitleName": "口からぶっ放すぜマシンガン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5487, + "TitleName": "I love \u0022No Limit RED Force\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5488, + "TitleName": "今 キミが起こす イリュージョン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5489, + "TitleName": "キミよ 超えろホライゾン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5490, + "TitleName": "ほらもう止まらない", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5491, + "TitleName": "I love \u0022MEGATON BLAST\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5492, + "TitleName": "MEGATON BLAST Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5493, + "TitleName": "MEGATON BLAST King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5494, + "TitleName": "MEGATON BLAST God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5495, + "TitleName": "I love \u0022Y.Y.Y.計画!!!!\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5496, + "TitleName": "日本の首都は?\u0022Y.Y.Y.!!!!\u0022", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5497, + "TitleName": "一富士二鷹?\u0022Y.Y.Y.!!!!\u0022", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5498, + "TitleName": "世界のすべては\u0022Y.Y.Y.!!!!\u0022", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5499, + "TitleName": "I love \u0022FLUFFY FLASH\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5500, + "TitleName": "FLUFFY FLASH Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5501, + "TitleName": "FLUFFY FLASH King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5502, + "TitleName": "FLUFFY FLASH God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5503, + "TitleName": "I love \u0022Don\u0027t Fight The Music\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 23 + }, + { + "Id": 5504, + "TitleName": "Don\u0027t Fight The Music Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5505, + "TitleName": "Don\u0027t Fight The Music King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 23 + }, + { + "Id": 5506, + "TitleName": "Don\u0027t Fight The Music God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 23 + }, + { + "Id": 5507, + "TitleName": "I love \u0022Second Sight Stella\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5508, + "TitleName": "空を目指してStars of wish", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5509, + "TitleName": "I can\u0027t look back anymore", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5510, + "TitleName": "駆け巡る夢描いてく", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5511, + "TitleName": "I love \u0022マイアングル\u0022", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEn": "Play a set song 100 times or more", + "UnlockType": 20 + }, + { + "Id": 5512, + "TitleName": "目を見つめられなくても", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEn": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5513, + "TitleName": "離れた手が怖くても", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS\u002B\u002Bの評価", + "UnlockRequirementEn": "Play a set song and get S\u002B\u002B\nin SIMPLE, NORMAL and HARD", + "UnlockType": 20 + }, + { + "Id": 5514, + "TitleName": "思いが届かなくても", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEn": "Play a set song and earn 1,000,000 points", + "UnlockType": 20 + }, + { + "Id": 5515, + "TitleName": "プリメラ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5516, + "TitleName": "頑張り屋さんのNO.1サポーター", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5517, + "TitleName": "ブサかわキャラハンターの相棒", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5518, + "TitleName": "柚子専属アメちゃん補充部隊", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5519, + "TitleName": "エリート娘の頼れるパートナー", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5520, + "TitleName": "俺は虹レだぞ!", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5521, + "TitleName": "ヤバイクライヨノナカヲワイワイサセチャウゾ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5522, + "TitleName": "私たちは…負けない!", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5523, + "TitleName": "I love ナビニャン", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5524, + "TitleName": "I love 皇城 セツナ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5525, + "TitleName": "I love 藤沢 柚子", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5526, + "TitleName": "I love 三角 葵", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5527, + "TitleName": "I love 星咲 あかり", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5528, + "TitleName": "Let\u0027s shoot!", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + }, + { + "Id": 5529, + "TitleName": "オンゲキーズ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEn": "Event Award", + "UnlockType": 12 + } +] \ No newline at end of file diff --git a/WebUI/wwwroot/index.html b/WebUI/wwwroot/index.html index 561826d..371013a 100644 --- a/WebUI/wwwroot/index.html +++ b/WebUI/wwwroot/index.html @@ -1,25 +1,34 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/> <title>WebUI - - - + + + + + + -
Loading...
+
+ + + + +
+
-
- An unhandled error has occurred. - Reload - 🗙 -
- - +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + \ No newline at end of file